我正在尝试使用 html 和 php 制作一个表单来更新 mysql 数据库。数据库更新(自动增量)键,但它不会将任何字符串添加到值中。我搜索过有类似问题的人,但因为他们的代码与我的不同,我无法理解(我是 php 和 mysql 的菜鸟)我认为我的问题在于我使用 html 获取值的方式,但我可能是错误的
<form action=submitform.php method=GET>
Name:<input type="text" name="cuName" size=20 maxlength=20><br>
Password:<input type="password" name="password" size=20 maxlength=45><br>
Account:<input type="text" name="account" size=20 maxlength=45><br>
Phone:<input type="tel" name="phone" size=10 maxlength=10><br>
Email:<input type="text" name="email" size=20 maxlength=45><br>
<input type=submit>
</form>
我的 php 是
<?php
mysql_connect(localhost, myUsername, "myPassword");
mysql_select_db(myDatabaseName);
mysql_query("INSERT INTO Customer (cuName, password,
account, phone, email)
Values('$cuName', '$password', '$account',
'$phone', '$email')");
echo $cuName ." thank you for reserving!";
print ($cuName);
?>
提前感谢您的帮助