嗨,我对php& slq编码..我一直在寻找并且能够更新我的php数据库..
以下是我编码如此公平的内容..这会在论坛中显示我的数据库字段
<?php
$host="localhost"; // Host name
$username="mixfm_djs"; // Mysql username
$password="0121do1"; // Mysql password
$db_name="mixfm_djs"; // Database name
$tbl_name="table1"; // Table name
// Connect to server and select database.
mysql_connect("$host", "$username", "$password")or die("cannot connect");
mysql_select_db("$db_name")or die("cannot select DB");
$sql="SELECT * FROM $tbl_name";
$result=mysql_query($sql);
?>
<form id="form1" name="form1" method="post" action="index.php">
<table width="400" border="0" cellspacing="1" cellpadding="0">
<tr>
<td><form name="form1" method="post" action="update_ac.php"></td>
</tr>
<tr>
<td><table width="400" border="1" cellspacing="0" cellpadding="3">
<tr>
<td colspan="4"><strong>List data from mysql </strong></td>
</tr>
<tr>
<td align="center"><strong>DJ-Name</strong></td>
<td align="center"><strong>Password</strong></td>
<td align="center"><strong>State</strong></td>
<td align="center"> </td>
</tr>
<?php
while($rows=mysql_fetch_array($result)){
?>
<tr>
<td><input name="djname" type="text" id="djname" value="<? echo $rows['djname']; ?>" /></td>
<td><input name="name" type="text" id="name" value="<? echo $rows['name']; ?>" size="15" /></td>
<td><input name="state" type="text" id="state" value="<? echo $rows['state']; ?>" size="15" /></td>
<td align="center"> </td>
</tr>
<?php
}
?>
</table></td>
</tr>
</table>
<p>
<input type="submit" name="update" id="update" value="update" />
</p>
<?php
mysql_close();
?>
</form>
希望有人可以提供帮助
由于
答案 0 :(得分:1)
如评论中所述,如果你真的专注于mysql,你应该使用mysqli。以下是使用mysqli的一点介绍。
其次,您需要一个更新语句才能实际“更新”您的mysql数据库。这是一个关于使用mysqli扩展进行更新的教程。
http://www.pontikis.net/blog/how-to-use-php-improved-mysqli-extension-and-why-you-should
这里有很多人会告诉你在这里使用mysqli或pdo作为数据库的东西,因为mysql_query会让你的数据库因为一些严重的安全漏洞而被打开,并且使你的代码难以维护。
由于你刚刚开始,你应该学习更多关于mysqli,pdo和预备语句的知识,因为一旦你习惯使用某些工具,坏习惯将很难打破。