php mysql查詢顯示的實作方法:先定義一個「ShowTable」方法;然後透過「mysql_connect」連接資料庫;接著使用「mysql_query」等函數查詢資料庫;最後將查詢結果用表格顯示輸出即可。
推薦:《PHP視訊教學》
PHP查詢MySql資料庫,將結果用表格輸出實例
在使用PHP開發網站時,MySql資料庫查詢結果以表格輸出,對於初學PHP程式開發的同學可能有一些難度。
本文以實例形式示範了PHP查詢MySql資料庫,並將結果以表格輸出的功能,希望對大家的PHP程式設計有所幫助。
<strong><span style="font-size:18px;"> <?php //PHP查询MySql数据库,将结果用表格输出 function ShowTable($table_name){ $conn=mysql_connect("localhost","root","toor"); if(!$conn){ echo "连接失败"; } mysql_select_db("test",$conn); mysql_query("set names utf8"); $sql="select * from $table_name"; $res=mysql_query($sql,$conn); $rows=mysql_affected_rows($conn);//获取行数 $colums=mysql_num_fields($res);//获取列数 echo "test数据库的"."$table_name"."表的所有用户数据如下:<br/>"; echo "共计".$rows."行 ".$colums."列<br/>"; echo "<table><tr>"; for($i=0; $i < $colums; $i++){ $field_name=mysql_field_name($res,$i); echo "<th>$field_name</th>"; } echo "</tr>"; while($row=mysql_fetch_row($res)){ echo "<tr>"; for($i=0; $i<$colums; $i++){ echo "<td>$row[$i]</td>"; } echo "</tr>"; } echo "</table>"; } ShowTable("test1"); ?></span></strong>
以上是php mysql查詢顯示的實作方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!