PHP查詢MySql資料庫,將結果用表格輸出例項
阿新 • • 發佈:2018-12-23
在用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>