<?php
$q=select * from students where (dynamic for user searching)
$qry=mysql_fetch_array($q);
while($row=mysql_fetch_array())
{
**// i do not need data here?**
}
?>
< table>
< tr>< td><?php echo **$row[?][?];** ?>< /td>< td><?php echo **$row[?][?];** ?>< /td>...< /tr>
< tr>< td><?php echo **$row[?][?];** ?>< /td>< td><?php echo **$row[?][?];** ?>< /td>...< /tr>
....
< /table>
需要生成 html 表格格式的动态报告,html 表格的行和列对于结果是静态的,所以我不能在 while 循环中使用 echo 我必须在循环外部访问它我有一个选择单行单列的想法表格的每个单元格分开,但任何替代方案或解决方案都将耗费时间和长度?