我试过了,但对我没有用......我的意思是我正在拿到我的桌子,并且行数是正确的。但是,当我使用 $row['ColumnName']... 时,我一直在获取列的实际名称,而不是数据本身。如果我向表中添加更多行数据,我会增加行数,但数据仍然相同。只有列名。
有人遇到过这个问题吗?以及如何解决?php 版本:5.3 和 mysql 版本:5.5
$connection = mysql_connect('localhost', 'root', '');
mysql_select_db('employeedb');
$query = "SELECT * FROM employee"
$result = mysql_query($query);
echo "<table>"; // start a table tag in the HTML
while($row = mysql_fetch_array($result)){ //Creates a loop to loop through results
echo "<tr><td>" . $row['name'] . "</td><td>" . $row['age'] . "</td></tr>";
//$row['index'] the index here is a field name
}
echo "</table>"; //Close the table in HTML
mysql_close(); //Make sure to close out the database connection