php读取mysql数据显示方法
操作方法
- 01
<?php $host = 'localhost';//服务器名 $user_name = 'root';//用户名 $password = '********';//密码 $conn = mysql_connect($host,$user_name,$password);//连接服务器 if(!$conn)//判断错误 { die('数据库连接失败:<br/>'.mysql_error()); } mysql_select_db('cs',$conn);//连接数据库 $sql = mysql_query("SELECT * FROM sheet2"); echo "<div><table align='center' cellpadding='0' class='auto-style2'>"; while($field = mysql_fetch_field($sql))echo "<td class='auto-style1'> ".$field->name." </td>";//读出字段名 while ( $row = mysql_fetch_array($sql))echo "<tr><td class='auto-style1'>$row[0]</td><td class='auto-style1'>$row[1]</td><td class='auto-style1'>$row[2]</td><td class='auto-style1'>$row[3]</td><td class='auto-style1'>$row[4]</td></tr>";//读取数据的方法一 //while($row = mysql_fetch_object($sql)) echo "<tr><td>$row->Category</td><td>$row->AcctID</td><td>$row->AcctName</td><td>$row->Remark</td></tr>"; //读取数据的方法二 //while($row = mysql_fetch_array($sql)) echo "<tr><td>$row[Category]</td><td>$row[AcctID]</td><td>$row[AcctName]</td><td>$row[Remark]</td></tr>"; echo "</table>"; mysql_close($conn); ?>