我无法将我的HTML表单与MySQL数据库连接

时间:2014-02-04 21:21:43

标签: php html mysql sql database

我正在尝试构建一个表单,然后使用PHP将其连接到我的SQL数据库以填充表。但我无法连接数据库。当我按下提交时,则打开一个空白页面..并且没有任何内容插入到我的数据库中。你能帮帮我吗?有什么问题?

这是我的HTML表单

<html>
 <head>
      <title> Futja e te dhenave nepermjet nje forme </title>
            <style type = "text/css">
         body  { background-color: #cfd0f9 }
         h2    { font-family: arial, sans-serif;
                 color: blue }
        h3     {font-color: yellow}

          .error {color: #FF0000;}
</style>
   </head>
<body>

<h1><center>please enter data</center></h1>

<p> <span class="error">* please fill these fields.</span> </p>
<form method="post" action="insert.php">

  <strong> Emri:&nbsp &nbsp &nbsp &nbsp &nbsp </strong> <input type="text" name="fname" />
   <span class="error">* <?php echo $fnameErr;?></span>
   <br>

   <strong> Mbiemri:&nbsp &nbsp </strong> <input type="text" name="lname" />
   <span class="error">* <?php echo $dtlErr;?></span>
   <br>


<input type="submit" name= "shto" value="Add"/>

</form>

</body>
</html>

这是insert.php。我的数据库名为test,该表名为user。该表有三列:User_id, fname,lname

<html>
<body>

<?php
$con = mysql_connect('127.0.0.1','root','');
if (!$con)
  {
  die('The connection is not possible: ' . mysql_error());
  }


if(empty($_POST['fname']))
die ('Name is empty'. mysql_error());
mysql_select_db("test", $con);
if(empty($_POST['lname']))
die ('Last name is empty'. mysql_error());
mysql_select_db("test", $con);

$sql="INSERT INTO user(fname,lname)
VALUES
('$_POST[fname]','$_POST[lname]')";

if (!mysql_query($sql,$con))
  {
  die('Error: ' . mysql_error());
  }
echo "Successful insertion!!! ";

mysql_close($con)
?>
</body>
</html>

2 个答案:

答案 0 :(得分:0)

尝试添加一些消息,以便您知道代码的位置:

<html>
<body>

<?php
    echo '<pre>Before Connect' . print_r($_POST, true) . '</pre>'; // display the $_POST array

    $con = mysql_connect('127.0.0.1','root','');
    if (!$con)
    {
       die('The connection is not possible: ' . mysql_error());
    }

    echo 'After Connect';

    mysql_select_db('test', $con);    

    echo 'Database selected';

    if(empty($_POST['fname'])) die ('Name is empty'. mysql_error());

    if(empty($_POST['lname'])) die ('Last name is empty'. mysql_error());

    $sql = "INSERT INTO user(fname,lname) VALUES ('$_POST[fname]','$_POST[lname]')";

    echo "<br>$sql</br>";

    if (!mysql_query($sql,$con)) {
       die('Error: ' . mysql_error());
    }
    echo "Successful insertion!!! ";

    mysql_close($con)
?>
</body>
</html>

现在如果你没有得到任何东西到屏幕上,一些事情是非常严重的错误。请记住,die()命令也应该写入浏览器。

答案 1 :(得分:0)

最终编辑:

<html>
<head><title>Insert</title></head>
<body>    
<?php
    if(!isset($_POST['fname']))    
        {
        echo ('<b>Name is empty!</b>');
        }
    elseif(!isset($_POST['lname']))
        {
        echo ('<b>Name is empty!</b>');
        }
    else {
    $fname = $_POST['fname'];
    $lname = $_POST['lname']; 


    $con = mysql_connect('127.0.0.1','root','');
    if (!$con)
      {
      die('The connection is not possible: ' . mysql_error());
      }

    mysql_select_db("test", $con);

    $sql="INSERT INTO user(fname,lname) VALUES('".$fname."','".$lname."')";

    if (!mysql_db_query($con, $sql))
      {
      die('Error: ' . mysql_error());
      }
    echo ('<b>Successful insertion!!!</b>');

    mysql_close($con);

    }
    ?>
</body>
</html>

我更改了多行代码。特别是die()mysql_error() mysql_error不适用,因为您在代码中的那个时刻与您的服务器做了任何事情。您的代码中的其他一些注释可以在我的初始答案中找到。我把它包含在我的答案中以供参考。

旧版本:

变化:

if(empty($_POST['fname'])) 
die ('Name is empty'. mysql_error()); 
mysql_select_db("test", $con); if(empty($_POST['lname'])) 
die ('Last name is empty'. mysql_error()); 
mysql_select_db("test", $con);

成:

if(empty($_POST['fname'])){ 
die ('Name is empty'. mysql_error());
} 
mysql_select_db("test", $con); 
if(empty($_POST['lname'])){ 
die ('Last name is empty'. mysql_error());
} 
mysql_select_db("test", $con);

我为IF语句添加了括号。

添加;在mysql_close($con)之后mysql_close($con);