❶ 請問怎麼用php做網頁一打開,就連接資料庫並讀取表列印在網頁表單
這個簡單,首先你得先要鏈接好資料庫,其次就是查詢資料庫,就2步。
至於查看,刪除的就更簡單了,帶上id號就行了
<?php
mysql_connect("localhost","你的資料庫用戶名","你的資料庫密碼");
mysql_select_db("你的資料庫");
$sql=mysql_query("select*from數據表");
?>
<tablewidth="100%"border="0">
<tr>
<td>ID</td>
<td>名稱</td>
<td>操作</td>
</tr>
<?phpwhile($row=mysql_fetch_array($sql)){?>
<tr>
<td><?phpecho$row['欄位名']?></td>
<td><?phpecho$row['欄位名']?></td>
<td><ahref="?id=<?phpecho$row['id欄位']?>">查看</a></td>
</tr>
<?php}?>
</table>