0

这是完整的代码:

<?php
$host="localhost"; // Host name 
$username="root"; // Mysql username 
$password="pass07"; // Mysql password 
$db_name="test_db"; // Database name 
$tbl_name="test_tbl"; // Table name

// Connect to server and select database.
mysql_connect("$host", "$username", "$password")or die("cannot connect"); 
mysql_select_db("$db_name")or die("cannot select DB");

// Retrieve data from database 
$sql="SELECT * FROM $tbl_name";
$result=mysql_query($sql);
?>

<table width="400" border="1" cellspacing="0" cellpadding="3">

<?php
// Start looping rows in mysql database.
while($rows=mysql_fetch_array($result)){
?>

<tr>
<td width="10%"><? echo $rows['one']; ?></td>
<td width="30%"><? echo $rows['two']; ?></td>
<td width="30%"><? echo $rows['three']; ?></td>
<td width="30%"><? echo $rows['four']; ?></td>
</tr>


<?php
// close while loop 
}
?>

</table>

<?php
// close MySQL connection 
mysql_close();
?>

我正在尝试显示我的数据库中的信息。当我运行代码时,它说:解析错误:语法错误,第 36 行上的意外 '<' 我错过了什么?我哪里错了?非常感谢任何帮助。谢谢!

4

2 回答 2

2

你有

</table>

在您的 PHP 标记中。

改变:

<?php
// close while loop 
}
</table>
?>

至:

<?php
// close while loop 
}
?>
</table>
于 2013-01-27T16:05:43.467 回答
0

除非你在你的 中short_open_tag设置了,否则你应该替换onphp.ini

<td width="10%"><? echo $rows['one']; ?></td>
<td width="30%"><? echo $rows['two']; ?></td>
<td width="30%"><? echo $rows['three']; ?></td>
<td width="30%"><? echo $rows['four']; ?></td>

<td width="10%"><?php echo $rows['one']; ?></td>
<td width="30%"><?php echo $rows['two']; ?></td>
<td width="30%"><?php echo $rows['three']; ?></td>
<td width="30%"><?php echo $rows['four']; ?></td>
于 2013-01-27T16:17:45.593 回答