如果條件在這裏不起作用。 我已經通過了早期的解決方案,但我沒有找到合適的解決方案。 我不明白原因。 請幫我
<?php
require'core.inc.php';
require'connect.inc.php';
include 'header.php';
if(isset($_POST['submit'])) {
$query="INSERT INTO college (CollegeName) VALUES ('".$_POST['college']."')";
$result=mysql_query($query) or die(mysql_error());
header('Location:index.php');
}
?>
<form action="insert.php" method="POST">
<input type="text" name="college">
<input type="submit" value="submit" value="Submit">
</form>
<?php include'footer.php';?>
集名稱爲提交.... – Eleazan
您應該使用mysqli_ *而不是mysql_ *函數;他們被棄用,容易注射。至於你的問題,你的輸入按鈕有兩個值屬性。它需要一個名稱=「submit」屬性。 – Kevin