MySQL データベースからデータをフェッチしようとしています。データベースのデータが増えたので、行数を増やしたいのですが、タイトル行は1行だけにしてください。典型的なテーブルと同様ですが、ここでは #row を動的に増やすだけです。
<?php
mysql_connect ("localhost","root","root123");
mysql_select_db ("iterrordb");
$sql = "select * from record";
$result = mysql_query ($sql);
$num=mysql_numrows($result);
while ($row = mysql_fetch_array($result))
{
$RecID= $row["RecordID"];
$DispName= $row["Name"];
$date= $row["date"];
$fleet= $row["phone"];
$issue= $row["issue"];
$issueRelatedTo= $row["issuRelatedTo"];
}
//HTML CODE is start from here
echo "<table border=\"1\" bordercolor=\"#0066FF\" style=\"background-color:#CCFFFF\" width=\"50%\" cellpadding=\"1\" cellspacing=\"0\">";
echo"<tr>";
echo"<td>Record ID</td>";
echo"<td>Name</td>";
echo"<td>Date</td>";
echo"<td>Phone</td>";
echo"<td>Issue</td>";
echo"<td>Issue Related To</td>";
echo"</tr>";
echo"<tr>";
for ($i=0; $i<6; $i++)
{
echo"<td> $row[$i]</td>";
}
echo"</tr>";
echo"</table>";
?>