2012-05-09 67 views
1

我很難理解爲什麼這段代碼不起作用。我試圖用名爲'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> 
+0

在插入語句中,您的密碼爲普通字,您應該在此語句中獲取mysql錯誤。 – arma

+0

same scenerio here :) http://stackoverflow.com/questions/10509354/parse-error-syntax-error-unexpected-error/10509430#10509430 – nu6A

+0

這樣做會告訴你錯誤是什麼,如果它是一個sql錯誤mysql_query($ insert)或死(mysql_error()); – bumperbox

回答

2
$insert = 'INSERT into members(Firstname, Surname, Password, Email) VALUES ("'.$Firstname.'", "'.$Surname.'", "'.$Password.'", "'.$Email.'")'; 
                                ^^ 

ü前忘記把$password

+0

嗨,大家好,我已經修復了這些錯誤,並且我仍然沒有在SQL數據庫中找到任何東西。 – user1371500

+0

嘗試回顯查詢語句和varibales,並嘗試執行在控制檯中的查詢,並尋找錯誤(如果有的話)你得到 – nu6A

+0

您好我已經添加回聲像這樣 - echo mysql_query($ insert);當瀏覽器到達regprocess.php – user1371500