❶ 请问怎么用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>