没有在 PHP 中使用 MySQL 获取数据的指示字段名称。
while ($row_data = mysql_fetch_assoc($res_data)) {
$html .='<td>'.$row_data['without_fieldname'].'</td>';
}
使用mysql_fetch_row
,然后你可以使用$row_data[0]
等。
while ($row_data = mysql_fetch_row($res_data)) {
$html .= '<tr>';
for($i = 0; $i < count($row_data); $i++) {
$html .='<td>'.$row_data[$i].'</td>';
}
$html .= '</tr>';
}
请注意,您不应将此与此结合使用,SELECT *
因为对列顺序的任何更改都会破坏您的代码。