-3

我需要回显 html(其中还包含一个变量)并且我不断收到 Parse 错误:语法错误,意外 T_CONSTANT_ENCAPSED_STRING,期待 ',' 或 ';'

while ($line1 = mysql_fetch_array($result, MYSQL_ASSOC)) {
echo '<h1 align = "center"><strong>Section:</strong></h1>.''.'<h1align="center"><strong>$line1   ['section_id']</strong></h1>';} 

基本上,我需要它来阅读 Section: (然后为 Section ID 检索的任何内容都在一行上)。在这种情况下,输出 html 的最佳方法是什么?

4

2 回答 2

0

您的代码是火车残骸。尝试这个:

while ($line1 = mysql_fetch_array($result, MYSQL_ASSOC)) {
    echo '<h1 align = "center"><strong>Section:</strong></h1><h1 align="center"><strong>' . $line1['section_id'] . '</strong></h1>';
}
于 2012-04-24T19:07:29.630 回答
0
while ($line1 = mysql_fetch_array($result, MYSQL_ASSOC)) {
echo '<h1 align = "center"><strong>Section:</strong></h1><h1align="center">    <strong>' . $line1 . ' ' .  ['section_id'] .'</strong></h1>';} 

你去吧

于 2012-04-24T19:08:00.090 回答