我要導航到一個PHP頁面 這被動態地分配一個截面的截面..導航到一個PHP頁面的一個動態分配的部分
mysql_connect("localhost", "root", "") or die(mysql_error());
mysql_select_db("somedb") or die(mysql_error());
$data = mysql_query("SELECT * FROM events")
or die(mysql_error());
while($info = mysql_fetch_array($data))
{
Print "<hr>";
Print "<section id=".$info['title'] .">";
Print "<h1>".$info['title'] . "</h1>";
echo nl2br ($info['desc'],true) ;
Print "</section>";}
?>
從這個PHP代碼
<?php
mysql_connect("localhost", "root", "") or die(mysql_error());
mysql_select_db("somedb") or die(mysql_error());
$data = mysql_query("SELECT title FROM events")
or die(mysql_error());
while($info = mysql_fetch_array($data))
{
echo "<a href="events.php#.$info['title'].">"
Print " ".$info['title'] ."";
}
?>
我得到這樣
Parse error: syntax error, unexpected 'events' (T_STRING) in C:\xampp\htdocs\IETE\index - Copy.php on line 91
錯誤請幫助:)
什麼行91? index.php – 2014-09-20 07:24:47