|
|
|
Insert ไม่ได้สักทีเลย ดูแล้วรอบแล้ว รบกวนช่วนตรวจสอบด้วยนะครับ |
|
|
|
|
|
|
|
Code (PHP)
<?php
session_start();
$req_emp_id = $_POST ['txtreq_emp_id'];
$user_lev_id = 2;
$department_id = $_POST ['department_id'];
$division_id = $_POST ['division_id'];
$section_id = $_POST ['section_id'];
$position = $_POST['txtposition'];
$req_name = $_POST ['txtreq_name'];
$req_lastname = $_POST ['txtreq_lastname'];
$sex = $_POST ['sex'];
$dob = $day."-".$month."-".$year;
$id_card = $_POST ['txtid_card'];
$addr = $_POST ['txtaddress'];
$tel_home = $_POST ['txttel_home'];
$tel = $_POST ['txttel'];
$email = $_POST ['txtemail'];
$ip_address = $_SERVER['REMOTE_ADDR']; //Get user IP
$is_active = 0;
$upassword = $_POST ['txtreq_emp_id'];
date_default_timezone_set('Asia/Bangkok');
$date_created = date("Y/m/d H:i:s"); //เวลาปัจจุบัน
$date_updated = date("Y/m/d H:i:s");
$date_access = date("Y/m/d H:i:s");
//SAVE
$sql="INSERT INTO request_account VALUES('',$req_emp_id','$user_lev_id','$department_id', '$division_id','$section_id','$req_name','$req_lastname','$sex' ,'$dob','$id_card' ,'$addr','$tel_home','$tel','$email','$ip_address','$is_active', '$upassword','$date_created','$date_updated','$date_access')" ;
mysql_query($sql) or die ("SAVE Error!!! [".$sql."]");
echo"<script>
alert('บันทึกข้อมูลเรียบร้อยแล้ว ด้วยนะครับ');
window.location='registered_usersN.php';
</script>";
exit();
?>
ลืมบอกว่า req_id เป็น Auto Increment ครับ
มันติดอะไรตรงไหนหรือครับ ทุกทีทำได้ เห้อ
Tag : PHP, MySQL
|
ประวัติการแก้ไข 2012-07-30 22:05:42
|
|
|
|
|
Date :
2012-07-30 22:01:25 |
By :
nyc_php |
View :
1365 |
Reply :
8 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?php
session_start();
$req_emp_id = $_POST ['txtreq_emp_id'];
$user_lev_id = 2;
$department_id = $_POST ['department_id'];
$division_id = $_POST ['division_id'];
$section_id = $_POST ['section_id'];
$position = $_POST['txtposition'];
$req_name = $_POST ['txtreq_name'];
$req_lastname = $_POST ['txtreq_lastname'];
$sex = $_POST ['sex'];
$dob = $day."-".$month."-".$year;
$id_card = $_POST ['txtid_card'];
$addr = $_POST ['txtaddress'];
$tel_home = $_POST ['txttel_home'];
$tel = $_POST ['txttel'];
$email = $_POST ['txtemail'];
$ip_address = $_SERVER['REMOTE_ADDR']; //Get user IP
$is_active = 0;
$upassword = $_POST ['txtreq_emp_id'];
date_default_timezone_set('Asia/Bangkok');
$date_created = date("Y/m/d H:i:s"); //เวลาปัจจุบัน
$date_updated = date("Y/m/d H:i:s");
$date_access = date("Y/m/d H:i:s");
//SAVE
mysql_connect('localhost', 'root', 'yourpassword') or die (mysql_error());
mysql_select_db('yourdatabases') or die (mysql_error());
$sql="INSERT INTO request_account VALUES('',$req_emp_id','$user_lev_id', '$department_id','$division_id','$section_id','$req_name' ,'$req_lastname','$sex','$dob','$id_card','$addr','$tel_home','$tel', '$email','$ip_address','$is_active','$upassword','$date_created','$date_updated','$date_access')" ;
mysql_query($sql) or die ("SAVE Error!!! [".$sql."]");
echo"<script>
alert('บันทึกข้อมูลเรียบร้อยแล้ว ด้วยนะครับ');
window.location='registered_usersN.php';
</script>";
exit();
?>
|
|
|
|
|
Date :
2012-07-30 23:17:57 |
By :
popnakub |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เวลาสร้าง Query แนะนำให้ใส่ชื่อ Field ด้วยครับ ถึงมันจะเยอะ แต่เวลามัน Error จะตรวจสอบได้ง่าย
เช่น
Code (PHP)
$query="INSERT INTO Member(M_ID, M_NAME, M_LAST) ";
$query.="VALUE('12345', 'Somsuk', 'Khondee')";
|
|
|
|
|
Date :
2012-07-31 00:33:14 |
By :
Krungsri |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เขียนแบบตัวอย่างของคุณไล่ยังไงก็หาไม่เจอหรอกครับ รู้อยากเดียว ว่า เพิ่มได้หรือไมไ่ด้ อิๆ
|
|
|
|
|
Date :
2012-07-31 14:31:53 |
By :
keng_ds |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ถ้ากลัวงงเวลามี Field เยอะq วิธีนี้ช่วยได้ครับ
Code (PHP)
$sql = "INSERT INTO t_member SET ";
$sql .= "id = '$str_id',";
$sql .= "name = '$str_name',";
$sql .= "company = '$str_company',";
$sql .= "state = '$str_state',";
$sql .= "city = '$str_city',";
$sql .= "office = '$str_office',";
$sql .= "tel = '$str_tel',";
$sql .= "mobile = '$str_mobile',";
$sql .= "email = '$str_email',";
$sql .= "logo_pic = '$str_logo_pic',";
$sql .= "username = '$str_username',";
$sql .= "password = '$str_password' ";
mysql_query($sql);
|
|
|
|
|
Date :
2012-07-31 14:39:33 |
By :
WawdoG |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองเปลี่ยน ฟังกชั่น query การทำงานดูหรือยัง จาก mysql_query เป็น mysql_db_query
|
|
|
|
|
Date :
2012-08-28 12:01:39 |
By :
odd |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|