欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

html中select语句读取mysql表中内容_php基础

程序员文章站 2022-04-09 19:54:10
...
$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";
?>