我很難理解爲什麼這段代碼不起作用。我試圖用名爲'members'的表將數據插入名爲'clubresults'的MySQL數據庫中。通常這種東西對我來說相當容易,但是在數據庫中沒有任何東西出現。顯然現在使用xammpp在localhost上運行。代碼如下。註冊腳本PHP MySQL不插入數據庫
的config.php
<?php
// Connects to your Database
mysql_connect("localhost", "root", "") or die(mysql_error());
mysql_select_db("clubresults") or die(mysql_error());
?>
RegProcess.php - 主PHP類
<?php
include "config.php";
$Firstname = $_POST['Firstname'];
$Surname = $_POST['Surname'];
$Password = md5($_POST['Password']);
$Email = $_POST['Email'];
$insert = 'INSERT into members(Firstname, Surname, Password, Email) VALUES ("'.$Firstname.'", "'.$Surname.'", "'.Password.'", "'.$Email.'")';
mysql_query($insert);
?>
Register.php - 包括HTML表單
<form action="regprocess.php" method="post">
<table border="0">
<tr><td colspan=2><h1>Register</h1></td></tr> <br>
<tr><td>Firstname:</td><td>
<input type="text" name="Firstname" maxlength="60">
</td></tr>
<tr><td>Surname:</td><td>
<input type="text" name="Surname" maxlength="60">
</td></tr>
<tr><td>Password:</td><td>
<input type="password" name="Password" maxlength="20">
</td></tr>
<tr><td>Email:</td><td>
<input type="text" name="Email" maxlength="50">
</td></tr>
<tr><th colspan=2><input type="submit" name="submit" value="Register">
</form>
在插入語句中,您的密碼爲普通字,您應該在此語句中獲取mysql錯誤。 – arma
same scenerio here :) http://stackoverflow.com/questions/10509354/parse-error-syntax-error-unexpected-error/10509430#10509430 – nu6A
這樣做會告訴你錯誤是什麼,如果它是一個sql錯誤mysql_query($ insert)或死(mysql_error()); – bumperbox