我正在尝试将表单发布到 mysql 数据库中。我使用的是 Windows 8 和 iis 8,但是当我尝试发布表单时出现此错误“您正在查找的页面无法显示,因为正在使用无效的方法(HTTP 动词)。”
我的html代码:
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>odev3</title>
</head>
<body>
<form align="middle" action="insert.php" method="post">
Ad : <input type="text" name="ad" style="margin-left:60px" required/><br>
Soyad : <input type="text" name="soyad" style="margin-left:40px" required/><br>
Kullanıcı Adı : <input type="text" name="kullaniciadi" required/><br>
Şifre : <input type="text" name="sifre" style="margin-left:52px" required/><br>
<input type="reset" value="Temizle"/>
<input type="submit" value="Kaydol"/>
</form>
</body>
</html>
和我的php代码:
<?php
$host="localhost";
$user="root";
$pass="123";
mysql_connect($host,$user,$pass);
mysql_select_db("odev3");
$sql="INSERT INTO kisi(ad,soyad,kullaniciadi,sifre) VALUES ('$_POST[ad]','$_POST[soyad]','$_POST[kullaniciadi]','$_POST[sifre]')";
$result = mysql_query($sql);
if($result)
{
echo("<br> Veri eklendi.");
}
else
{
echo("<br> Veri eklenemedi.");
}
?>