Heim >Backend-Entwicklung >PHP-Tutorial >Verwenden Sie die Select-Anweisung in HTML, um Daten aus der MySQL-Tabelle zu lesen
$record=0;
$db=@MySQL_pconnect('localhost','root');
@mysql_select_db('1234',$db);
$strsql="select * from 1234_data";
$result=@mysql_query($strsql);
$data=@mysql_fetch_array($result);
$record=@mysql_num_rows($result);
echo "n";
?>
以上就介绍了html中使用select语句读取mysql表中数据, 包括了方面的内容, 希望对PHP教程有兴趣的朋友有所帮助.