Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,027

HOME > PHP > PHP Forum > กดเพิ่มข้อมูลไม่ได้ ข้อมูลไม่บันทึกลงในฐานข้อมูล (error)



 

กดเพิ่มข้อมูลไม่ได้ ข้อมูลไม่บันทึกลงในฐานข้อมูล (error)

 



Topic : 134122



โพสกระทู้ ( 17 )
บทความ ( 0 )



สถานะออฟไลน์
Facebook



Code (PHP)
9
<?php

    ini_set('post_max_size', '2000M');

    ini_set('upload_max_filesize', '40M');

    session_start();

    require_once "connect.php";

if (isset($_POST['submit'])) {

    $post_id = $_POST['id'];
    $post_nameth = $_POST['nameth'];
    $post_nameen = $_POST['nameen'];
    $post_weight = $_POST['weight'];
    $post_height = $_POST['height'];
    $post_address = $_POST['address'];
    $post_birthday = $_POST['birthday'];
    $post_age = $_POST['age'];
    $post_religion = $_POST['religion'];
    $post_tel = $_POST['tel'];
    $post_email = $_POST['email'];
    $post_image = $_FILES['image']['name'];
    $image_tmp = $_FILES['image']['tmp_name'];
    $post_resume = $_FILES['image1']['name'];
    $image_tmp = $_FILES['image1']['tmp_name'];

        move_uploaded_file($image_tmp, "../img/$post_image");
        move_uploaded_file($image_tmp, "../img/$post_resume");


    $insert_query = "INSERT INTO job (post_id, post_nameth, post_nameen, post_weight, post_height, post_address, post_birthday, post_age, post_religion, post_tel, post_email, post_image, post_resume)
                VALUES ('$post_id', '$post_nameth', '$post_nameen', '$post_weight', '$post_height','$post_address','$post_birthday','$post_age','$post_religion', '$post_tel', '$post_email', '$post_image', '$post_resume')";

    if (mysqli_query($conn, $insert_query)) {

      echo "<script>alert('Post published successfully');</script>";
        header("location: viewjob.php");
      } else {
      echo "<script>alert('Something wrong!');</script>";
            }

          }
    ?>

<!DOCTYPE html>
<html lang="en" dir="ltr">
  <head>
    <meta charset="utf-8">
    <title>Insert Page</title>

      <link rel="stylesheet" href="css/stylemew.css">

  </head>
  <body>

    <header align="center">
      <div class="container">
        <h1>Welcome to Admin Page Miss </h1>

      </div>
    </header>

    <section class="content">
      <div class="content_grid">

        <div class="sidebar">
          <h1>Welcome : </h1>
          <h3><a href="index.php">Home</a></h3>
          <h3><a href="viewjob.php">View</a></h3>
          <h3><a href="insertjob.php">Insert</a></h3>
          <h3><a href="logout.php">Logout</a></h3>
        </div>

        <div class="showinfo">
          <h1>Insert</h1>

          <form action="insertjob.php" method="post" enctype="multipart/form-data">
            <table width="100%" align="center" border="1">

              <tr>
                <td align="center" colspan="6"><h1>Insert</h1></td>
              </tr>

              <tr>
                <td>เลขประจำตัวประชาชน</td>
                <td><input type="text" name="id" size="25"></td>
              </tr>

              <tr>
                <td>ชื่อ-นามสกุล (ภาษาไทย)</td>
                <td><input type="text" name="nameth" size="25"></td>
              </tr>

              <tr>
                <td>ชื่อ-นามสกุล (ภาษาอังกฤษ)</td>
                <td><input type="text" name="nameen" size="25"></td>
              </tr>

              <tr>
                <td>น้ำหนัก</td>
                <td><input type="text" name="weight" size="25"></td>
              </tr>

              <tr>
                <td>ส่วนสูง</td>
                <td><input type="text" name="height" size="25"></td>
              </tr>

              <tr>
                <td>ที่อยู่</td>
                <td><textarea name="address" cols="35" rows="10"></textarea></td>
              </tr>

              <tr>
                <td>วันเกิด</td>
                <td><input type="text" name="birthday" size="25">Ex.01/01/10</td>
              </tr>

              <tr>
                <td>อายุ</td>
                <td><input type="text" name="age" size="25"></td>
              </tr>

              <tr>
                <td>ศาสนา</td>
                <td><input type="text" name="religion" size="25"></td>
              </tr>

              <tr>
                <td>เบอร์โทรศัพท์</td>
                <td><input type="text" name="tel" size="25"></td>
              </tr>

              <tr>
                <td>E-mail</td>
                <td><input type="text" name="email" size="25"></td>
              </tr>

              <tr>
                <td>แนบรูป</td>
                <td><input type="file" name="image" size="50"</td>
              </tr>

              <tr>
                <td>resume</td>
                <td><input type="file" name="image1" size="50"</td>
              </tr>

              <tr>
                <td align="center" colspan="6"><input type="submit" name="submit" value="Publish Now"></td>
              </tr>
            </table>

          </form>

          </div>
        </div>

      </section>

      </body>
      </html>





Tag : PHP, MySQL, HTML, JAVA, XAMPP







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2019-09-02 15:09:32 By : 2379645052123537 View : 662 Reply : 3
 

 

No. 1



โพสกระทู้ ( 3,844 )
บทความ ( 0 )

สมาชิกที่ใส่เสื้อไทยครีเอท Hall of Fame 2012

สถานะออฟไลน์
Twitter Facebook

echo $insert_query ในบรรทัดที่ 33 ดู query string ครับ น่าจะผิด






แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2019-09-02 15:26:23 By : mongkon.k
 


 

No. 2



โพสกระทู้ ( 17 )
บทความ ( 0 )



สถานะออฟไลน์
Facebook

ตอบความคิดเห็นที่ : 1 เขียนโดย : mongkon.k เมื่อวันที่ 2019-09-02 15:26:23
รายละเอียดของการตอบ ::
หนูทำหน้า insert เพิ่ม แต่ใช้คำสั่งเดิมมาดัดแปลง แบบนี้รึเปล่าค่ะเลยทำให้เพิ่มข้อมูลลงฐานข้อมูลไม่ได้

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2019-09-02 15:35:03 By : 2379645052123537
 

 

No. 3



โพสกระทู้ ( 4,720 )
บทความ ( 8 )



สถานะออฟไลน์


Code (PHP)
$insert_query = "INSERT INTO job (post_id, post_nameth, post_nameen, post_weight, post_height, post_address, post_birthday, post_age, post_religion, post_tel, post_email, post_image, post_resume)
                VALUES ('$post_id', '$post_nameth', '$post_nameen', '$post_weight', '$post_height','$post_address','$post_birthday','$post_age','$post_religion', '$post_tel', '$post_email', '$post_image', '$post_resume')";
echo $insert_query;
exit();

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2019-09-03 01:20:48 By : mr.v
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : กดเพิ่มข้อมูลไม่ได้ ข้อมูลไม่บันทึกลงในฐานข้อมูล (error)
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ FTP| ใส่แถวของตาราง ใส่คอลัมน์ตาราง| ตัวยก ตัวห้อย ตัวพิมพ์ดีด| ใส่โค้ด ใส่การอ้างถึงคำพูด| ใส่ลีสต์
smiley for :lol: smiley for :ken: smiley for :D smiley for :) smiley for ;) smiley for :eek: smiley for :geek: smiley for :roll: smiley for :erm: smiley for :cool: smiley for :blank: smiley for :idea: smiley for :ehh: smiley for :aargh: smiley for :evil:
Insert PHP Code
Insert ASP Code
Insert VB.NET Code Insert C#.NET Code Insert JavaScript Code Insert C#.NET Code
Insert Java Code
Insert Android Code
Insert Objective-C Code
Insert XML Code
Insert SQL Code
Insert Code
เพื่อความเรียบร้อยของข้อความ ควรจัดรูปแบบให้พอดีกับขนาดของหน้าจอ เพื่อง่ายต่อการอ่านและสบายตา และตรวจสอบภาษาไทยให้ถูกต้อง

อัพโหลดแทรกรูปภาพ

Notice

เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ
อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง

   
  เพื่อความปลอดภัยและการตรวจสอบ กระทู้ที่แทรกไฟล์อัพโหลดไฟล์จากที่อื่น อาจจะถูกลบทิ้ง
 
โดย
อีเมล์
บวกค่าให้ถูก
<= ตัวเลขฮินดูอารบิก เช่น 123 (หรือล็อกอินเข้าระบบสมาชิกเพื่อไม่ต้องกรอก)







Exchange: นำเข้าสินค้าจากจีน, Taobao, เฟอร์นิเจอร์, ของพรีเมี่ยม, ร่ม, ปากกา, power bank, แฟลชไดร์ฟ, กระบอกน้ำ

Load balance : Server 05
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่