對不起,如果這已經存在,但我無法在任何地方找到它。插入使用PHP顯示爲下載而不是執行
我試圖從一個表格中插入信息到名爲「instest」的數據庫中名爲「test」的表中。 「instest」表中的列是「firstName」,「lastName」和「age」。
問題是,每次點擊提交按鈕時,它會顯示爲下載(IE)或代碼顯示(Opera),而不是實際執行的代碼。
下面是代碼:
/* TestInsert.php */
<!DOCTYPE HTML>
<html>
<body>
<form action="Insert.php" method="post">
Firstname: <input type="text" name="firstname" />
Lastname: <input type="text" name="lastname" />
Age: <input type="text" name="age" />
<input type="submit" />
</form>
</body>
</html>
/* Insert.php */
<?php
$con = mysql_connect("localhost","[email protected]"); //No password
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("test", $con);
$sql="INSERT INTO instest (firstName, lastName, age)
VALUES
('$_POST[firstname]','$_POST[lastname]','$_POST[age]')";
if (!mysql_query($sql,$con))
{
die('Error: ' . mysql_error());
}
echo "1 record added";
mysql_close($con)
?>
還有一個開始'<?'? – fyr