|
|
|
เช็คข้อมูลก่อน insert โค๊ด ไม่ insert ให้อ่ะคับ ช่วยดูโค๊ดให้หนอ่ยนะคับผม |
|
|
|
|
|
|
|
Code (PHP)
include("connectiondb.php");
include("class.php");
//จองยานพาหนะ
$uscar = new cls;
if($_GET['action']=="car"){
$uscar->query("select * from v_note where v_note_dateto = '".$_POST['dateto']."'");
$uscar_data = $uscar->data();
if($uscar_data){
echo '<script type="text/javascript">alert("วันที่ดังกล่าว มีการจองแล้ว กรุณาระบุวันที่ใหม่")</script>';
echo '<script type="text/javascript">window.location="../success/usecar.php"</script>';
}else {
if($_FILES['file']['tmp_name'] <> ""){
$ex = explode(".",$_FILES['file']['name']);
$documentfile = "member_".time().".".$ex[1];
@copy($_FILES['file']['tmp_name'],"../images/member/".$documentfile);
$uscar->query("INSERT INTO v_note (v_note_goverment, v_note_at, v_note_date, v_note_subject, v_note_study, v_note_name, v_note_position, fk_vehicle_id, v_note_necessity, v_note_place, v_note_zone, fk_province_id, v_note_of, v_note_distanceback, v_note_number, v_note_control, v_note_dateto, v_note_timeto, v_note_datereturn, v_note_timereturn, v_note_signature, v_note_documentfile) values (
'".$_POST['goverment']."',
'".$_POST['at']."',
'".time()."',
'".$_POST['subject']."',
'".$_POST['study']."',
'".$_POST['name']."',
'".$_POST['position']."',
'".$_POST['vehicle']."',
'".$_POST['necessity']."',
'".$_POST['place']."',
'".$_POST['zone']."',
'".$_POST['province']."',
'".$_POST['of']."',
'".$_POST['distanceback']."',
'".$_POsT['number']."',
'".$_POST['control']."',
'".$_POST['dateto']."',
'".$_POST['timeto']."',
'".$_POST['datereturn']."',
'".$_POST['timereturn']."',
'".$_POST['signature']."',
'".$documentfile."'
) ") or die(mysql_error());
if($uscar){
echo '<script type="text/javascript">alert ("ระบบได้ทำการส่งคำร้องแบบบันทึกข้อความขออนุญาตใช้รถไปราชการ เรียบร้อยแล้ว");</script> ';
echo '<script type="text/javascript">window.location = "../success/index.php";</script>';
}
}
}
}
Tag : PHP, MySQL
|
|
|
|
|
|
Date :
2013-12-08 18:11:16 |
By :
nobita |
View :
661 |
Reply :
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่มี Error อะไรเลยหรอคับ
|
|
|
|
|
Date :
2013-12-08 18:31:42 |
By :
Krungsri |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
$uscar->query("select * from v_note where v_note_dateto = '$_POST['dateto']';"); ลองดูอันนี้ครับ
|
|
|
|
|
Date :
2013-12-12 19:00:40 |
By :
beerburn |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|