我已经编写了一个HTML表单填充页面(sample.html),也已经编写了一个PHP(sample.php)代码,用于从HTML页面插入数据,但是我无法收到正确的消息,请向其他人解释! !!

这是PHP代码:-

<?php

$connection = mysql_connect('localhost', 'root','');

if (!$connection){
    die("Database Connection Failed" . mysql_error());
}

$select_db = mysql_select_db( "selva",$connection);

if (!$select_db){
    die("Database Selection Failed" . mysql_error());
}

error_reporting(0);

session_start();

$first_name = $_POST['first_name'];
$father_name = $_POST['father_name'];
$gender = $_POST['gender'];
$date_of_birth = $_POST['date_of_birth'];
$sports = $_POST['sports'];
$mobile = $_POST['mobile'];
$email = $_POST['email'];

if($first_name!='' and $father_name!='' and $gender!='' and $date_of_birth!='' and $sports!='' and $mobile!='' and $email!='') {

     $query = mysql_query("insert into register(first_name, father_name, gender, date_of_birth, sports, mobile, email) values('$first_name', '$father_name', '$gender', '$date_of_birth','$sports','$mobile','$email')");

     echo "<br/><br/><span>Data Inserted successfully...!!</span>";

 } else {
     echo "<p>Failed to Insert data <br/> Some Fields are Blank....!!</p>";
 }

 mysql_close($connection);

 ?>


请告诉如何将数据从HTML页面插入数据库?

最佳答案

尝试这个..

use <form action="sample.php" method="post">

<?php

$connection = mysqli_connect('localhost', 'root','');

if (!$connection){
    die("Database Connection Failed" . mysql_error());
} else {
    $select_db = mysqli_select_db( "selva",$connection);

    if (!$select_db){
        die("Database Selection Failed" . mysql_error());
    } else {
        error_reporting(0);

        session_start();

        $first_name = $_POST['first_name'];
        $father_name = $_POST['father_name'];
        $gender = $_POST['gender'];
        $date_of_birth = $_POST['date_of_birth'];
        $sports = $_POST['sports'];
        $mobile = $_POST['mobile'];
        $email = $_POST['email'];

        if($first_name!='' and $father_name!='' and $gender!='' and $date_of_birth!='' and $sports!='' and $mobile!='' and $email!='') {

           mysqli_query($connection, "insert into register(first_name, father_name, gender, date_of_birth, sports, mobile, email) values('$first_name', '$father_name', '$gender', '$date_of_birth','$sports','$mobile','$email')");

            if(mysqli_affected_rows($connection) > 0){
                echo "<p>Data Successfully add Added</p>";
            } else {
                echo "Employee NOT Added<br />";
                echo mysqli_error ($connection);
            }
         } else {
             echo "<p>Failed to Insert data <br/> Some Fields are Blank....!!</p>";
         }

         mysql_close($connection);
    }
}

?>

09-25 17:55
查看更多