เขียน PHP เก็บข้อมูลลงฐานข้อมูล พอไปตรวจกลับไม่พบข้อมูลค่ะ ช่วยตรวจเช็คให้ทีว่าผิดตรงไหน

จะทำเป็นหน้าฟอร์มสำหรับสมัครสมาชิกค่ะ


<?php
include("header.php"); ?>

        
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
</head>

<body>
<p>&nbsp;</p>
<center><b><p>&nbsp;</p>
  <p>&nbsp;</p>
  <p>ลงทะเบียน</p>
</b></center>
<form id="formregis" name="formregis" method="post" action="add-data-staff.php">
  <table width="476" border="0" align="center">
    <tr>
      <td width="79" height="44">ชื่อจริง :</td>
      <td width="144"><label for="staff_name"></label>
      <input name="staff_name" type="text" id="staff_name" /></td>
      <td width="71">นามสกุล :</td>
      <td width="164"><label for="staff_surname"></label>
      <input name="staff_surname" type="text" id="staff_surname" /></td>
    </tr>
    <tr>
      <td height="58">ชื่อล๊อกอิน :</td>
      <td><input name="staff_username" type="text" id="staff_username" /></td>
      <td>รหัสผ่าน :</td>
      <td><input name="staff_password" type="password" id="staff_password" /></td>
    </tr>
    <tr>
      <td height="58">&nbsp;</td>
      <td colspan="3"><label for="username">
        <center>
          <input type="submit" name="submit" id="submit" value="ยืนยัน" />
                  <a href="index.php">
                  <input type="button" name="cancel" id="cancel" value="ยกเลิก" />
          </a>
        </center>
        </label>        <label for="psswd">
          <center></center>
      </label></td>
    </tr>
  </table>
  <p>&nbsp;</p>
  <p>&nbsp;</p>
  <p>&nbsp;</p>
  <p>&nbsp;</p>
  <p>&nbsp;</p>
  <p>&nbsp;</p>
</form>

<?php
require_once('Connections/AddDataCustomers.php');
        $staff_name = $_POST['staff_name'];
        $staff_surname  = $_POST['staff_surname'];
        $staff_username = $_POST['staff_username'];
        $staff_password = $_POST['staff_password'];
        
        
        
$sql = "insert into data_staff (staff_name,staff_surname,staff_password,staff_username) values ('$staff_name','$staff_surname','$staff_password','$staff_username')";
echo'<div class="content">';
echo'<center>บันทึกเรียบร้อยแล้ว</center><br><a href="index.php"><center>กลับไปหน้า Login</center></a>';
echo'</div>';
    //echo $sql;
mysql_query($sql);
mysql_close();

?>


</body>
</html>
แสดงความคิดเห็น
โปรดศึกษาและยอมรับนโยบายข้อมูลส่วนบุคคลก่อนเริ่มใช้งาน อ่านเพิ่มเติมได้ที่นี่