<?php
$con=mysql_connect("localhost","root","") or die("Error");
mysql_select_db("college") or die("DB error");
$q=mysql_query("select* from studentinfo");
echo "<table border=1>
<th> Roll No</th>
<th> Name</th>
<th> Class</th>
<th> Update</th>";
while($rows=mysql_fetch_array($q))
{?>
<tr>
<td><? echo $rows[0];?></td>
<td><? echo $rows[1];?></td>
<td><? echo $rows[2];?></td>
</tr>
<? } ?>
</table>
亲爱的专家
请检查此代码,并帮助查找错误。我刚刚写了那个显示错误的代码。
代码在这里:
当我在那个地方检查时,它无法正常工作
错误: 解析错误:语法错误,C:\ xampp \ htdocs \ 2017中的文件意外结束第22行的php \ updt.php
在22行有最后