|
|
|
ปัญหาเรื่่องการจองเวลา ไม่ให้ลบ record เดิมที่ insert ไปแล้ว |
|
|
|
|
|
|
|
ถ้าในตาราง timebooking ไม่มีข้อมูลเลย มันจะinsert ข้อมูลลงไป แต่มันก็จะลบอันที่ insert ลงไปล่าสุด ตามScript ด้านล่าง
อยากให้มันไม่ลบอ่ะครับ ที่เขียนให้มันลบทุกครั้งเพราะ เมื่อมีการจองแต่ละครั้ง(หลังจากเอาคำสั่งที่ลบออก) มันจะสร้างแถวใหม่ แต่วันที่เดิม
ไม่อยากให้มันสร้างแถวใหม่อ่ะครับ แต่ติดโค้ดที่มันต้องinsertทุกครั้ง
#ลบคำสั่ง Delete ออก ซึ่งต้องเอาออกทุกอันเพราะไม่รู้ว่าUserจะจองเวลาไหน
Code (PH-P)
<?
if($select1=='20.00' and $select2=='21.00'){
$Type_TBK_20=1;
if($type20==$Type_TBK_20){
echo "<script type='text/javascript'>alert('เวลา 20.00-21.00 มีคนจองแล้วครับ กรุณาเลือกเวลาอื่น')</script>";
echo "<meta http-equiv=refresh content=0;url=booking_customer.php?ID_M=$ID_M>";
exit();
}else
$sql2="insert into timebooking (ID_TBK,ID_M,Date_TBK) values ('','$ID_M','$date')";
$result2=mysql_db_query($DBName,$sql2);
$ID_TBK=mysql_insert_id();
$sql3="insert into customer (ID_Cus,Name_Cus,Lastname_Cus,Tel_Cus) values ('','$Name_Cus','$Lastname_Cus','$Tel_Cus')";
$result3=mysql_db_query($DBName,$sql3);
$ID_Cus=mysql_insert_id();
echo $ID_Cus;
echo $ID_TBK;
$sql4="update timebooking set 20_Type_TBK='1',20_Cus_TBK='$ID_Cus',ID_Mas_20='$select4' where Date_TBK='$date' and ID_M='$ID_M'";
$result4=mysql_db_query($DBName,$sql4);
/*if($result4){
$sql5="delete from timebooking where ID_TBK=$auto_in_time";
$result5=mysql_db_query($DBName,$sql5);
}*/
echo "<script type='text/javascript'>alert('จองเวลา 20.00-21.00 เรียบร้อยแล้ว')</script>";
echo "<meta http-equiv=refresh content=0;url=booking_customer_show_after_confirm.php?ID_Cus=$ID_Cus>";
};
////////////////////20-22///////////////
if($select1=='20.00' and $select2=='22.00'){
$Type_TBK_20=1;
$Type_TBK_21=1;
if($type20==1 and $type21==1 or $type20==1 and $type21==0 or $type20==0 and $type21==1){
echo "<script type='text/javascript'>alert('เวลา 20.00-22.00 มีคนจองแล้วครับ กรุณาเลือกเวลาอื่น')</script>";
echo "<meta http-equiv=refresh content=0;url=booking_customer.php?ID_M=$ID_M>";
exit();
}else
$sql2="insert into timebooking (ID_TBK,ID_M,ID_Mas_20,ID_Mas_21,Date_TBK) values ('','$ID_M','$select4','$select4','$date')";
$result2=mysql_db_query($DBName,$sql2);
$ID_TBK=mysql_insert_id();
$sql3="insert into customer (ID_Cus,Name_Cus,Lastname_Cus,Tel_Cus,ID_TBK) values ('','$Name_Cus','$Lastname_Cus','$Tel_Cus','$ID_TBK')";
$result2=mysql_db_query($DBName,$sql3);
$ID_Cus=mysql_insert_id();
echo $ID_Cus;
echo $ID_TBK;
$sql4="update timebooking set 20_Type_TBK='1',20_Cus_TBK='$ID_Cus',ID_Mas_20='$select4',21_Type_TBK='1',21_Cus_TBK='$ID_Cus',ID_Mas_21='$select4' where Date_TBK='$date' and ID_M='$ID_M'";
$result4=mysql_db_query($DBName,$sql4);
/*if($result4){
$sql5="delete from timebooking where ID_TBK=$auto_in_time";
$result5=mysql_db_query($DBName,$sql5);
}*/
echo "<script type='text/javascript'>alert('จองเวลา 20.00-22.00 เรียบร้อยแล้ว')</script>";
echo "<meta http-equiv=refresh content=0;url=booking_customer_show_after_confirm.php?ID_Cus=$ID_Cus>";
};
////////////////////21-22///////////////
if($select1=='21.00' and $select2=='22.00'){
$Type_TBK_21=1;
if($type21==$Type_TBK_21){
echo "<script type='text/javascript'>alert('เวลา 21.00-22.00 มีคนจองแล้วครับ กรุณาเลือกเวลาอื่น')</script>";
echo "<meta http-equiv=refresh content=0;url=booking_customer.php?ID_M=$ID_M>";
exit();
}else
$sql2="insert into timebooking (ID_TBK,ID_M,Date_TBK) values ('','$ID_M','$date')";
$result2=mysql_db_query($DBName,$sql2);
$ID_TBK=mysql_insert_id();
$sql3="insert into customer (ID_Cus,Name_Cus,Lastname_Cus,Tel_Cus) values ('','$Name_Cus','$Lastname_Cus','$Tel_Cus')";
$result2=mysql_db_query($DBName,$sql3);
$ID_Cus=mysql_insert_id();
echo $ID_Cus;
echo $ID_TBK;
$sql4="update timebooking set 21_Type_TBK='1',21_Cus_TBK='$ID_Cus',ID_Mas_21='$select4' where Date_TBK='$date' and ID_M='$ID_M'";
$result4=mysql_db_query($DBName,$sql4);
/*if($result4){
$sql5="delete from timebooking where ID_TBK=$auto_in_time";
$result5=mysql_db_query($DBName,$sql5);
}*/
echo "<script type='text/javascript'>alert('จองเวลา 21.00-22.00 เรียบร้อยแล้ว')</script>";
echo "<meta http-equiv=refresh content=0;url=booking_customer_show_after_confirm.php?ID_Cus=$ID_Cus>";
};
?>
ครั้งแรกจองเวลา 20.00-21.00
ครั้งที่สองจองเวลา 21.00-22.00
วันที่จอง 13-01-2014
ได้ผลลัพธ์แบบนี้ครับ
จากรูปข้างบนผมอยากไม่อยากให้มันสร้างแถวมาใหม่ เลยเพิ่มคำสั่งDeleteเข้าไป เพื่อให้มันลบออกแถวล่าสุดที่เพิ่มเข้ามา
#เพิ่มDelete ต้องเพิ่มทุกอัน เพราะไม่รู้ว่าUserจะจองเวลาไหน
Code (PHP)
<?
if($select1=='20.00' and $select2=='21.00'){
$Type_TBK_20=1;
if($type20==$Type_TBK_20){
echo "<script type='text/javascript'>alert('เวลา 20.00-21.00 มีคนจองแล้วครับ กรุณาเลือกเวลาอื่น')</script>";
echo "<meta http-equiv=refresh content=0;url=booking_customer.php?ID_M=$ID_M>";
exit();
}else
$sql2="insert into timebooking (ID_TBK,ID_M,Date_TBK) values ('','$ID_M','$date')";
$result2=mysql_db_query($DBName,$sql2);
$ID_TBK=mysql_insert_id();
$sql3="insert into customer (ID_Cus,Name_Cus,Lastname_Cus,Tel_Cus) values ('','$Name_Cus','$Lastname_Cus','$Tel_Cus')";
$result3=mysql_db_query($DBName,$sql3);
$ID_Cus=mysql_insert_id();
echo $ID_Cus;
echo $ID_TBK;
$sql4="update timebooking set 20_Type_TBK='1',20_Cus_TBK='$ID_Cus',ID_Mas_20='$select4' where Date_TBK='$date' and ID_M='$ID_M'";
$result4=mysql_db_query($DBName,$sql4);
if($result4){
$sql5="delete from timebooking where ID_TBK=$auto_in_time";
$result5=mysql_db_query($DBName,$sql5);
}
echo "<script type='text/javascript'>alert('จองเวลา 20.00-21.00 เรียบร้อยแล้ว')</script>";
echo "<meta http-equiv=refresh content=0;url=booking_customer_show_after_confirm.php?ID_Cus=$ID_Cus>";
};
////////////////////20-22///////////////
if($select1=='20.00' and $select2=='22.00'){
$Type_TBK_20=1;
$Type_TBK_21=1;
if($type20==1 and $type21==1 or $type20==1 and $type21==0 or $type20==0 and $type21==1){
echo "<script type='text/javascript'>alert('เวลา 20.00-22.00 มีคนจองแล้วครับ กรุณาเลือกเวลาอื่น')</script>";
echo "<meta http-equiv=refresh content=0;url=booking_customer.php?ID_M=$ID_M>";
exit();
}else
$sql2="insert into timebooking (ID_TBK,ID_M,ID_Mas_20,ID_Mas_21,Date_TBK) values ('','$ID_M','$select4','$select4','$date')";
$result2=mysql_db_query($DBName,$sql2);
$ID_TBK=mysql_insert_id();
$sql3="insert into customer (ID_Cus,Name_Cus,Lastname_Cus,Tel_Cus,ID_TBK) values ('','$Name_Cus','$Lastname_Cus','$Tel_Cus','$ID_TBK')";
$result2=mysql_db_query($DBName,$sql3);
$ID_Cus=mysql_insert_id();
echo $ID_Cus;
echo $ID_TBK;
$sql4="update timebooking set 20_Type_TBK='1',20_Cus_TBK='$ID_Cus',ID_Mas_20='$select4',21_Type_TBK='1',21_Cus_TBK='$ID_Cus',ID_Mas_21='$select4' where Date_TBK='$date' and ID_M='$ID_M'";
$result4=mysql_db_query($DBName,$sql4);
if($result4){
$sql5="delete from timebooking where ID_TBK=$auto_in_time";
$result5=mysql_db_query($DBName,$sql5);
}
echo "<script type='text/javascript'>alert('จองเวลา 20.00-22.00 เรียบร้อยแล้ว')</script>";
echo "<meta http-equiv=refresh content=0;url=booking_customer_show_after_confirm.php?ID_Cus=$ID_Cus>";
};
////////////////////21-22///////////////
if($select1=='21.00' and $select2=='22.00'){
$Type_TBK_21=1;
if($type21==$Type_TBK_21){
echo "<script type='text/javascript'>alert('เวลา 21.00-22.00 มีคนจองแล้วครับ กรุณาเลือกเวลาอื่น')</script>";
echo "<meta http-equiv=refresh content=0;url=booking_customer.php?ID_M=$ID_M>";
exit();
}else
$sql2="insert into timebooking (ID_TBK,ID_M,Date_TBK) values ('','$ID_M','$date')";
$result2=mysql_db_query($DBName,$sql2);
$ID_TBK=mysql_insert_id();
$sql3="insert into customer (ID_Cus,Name_Cus,Lastname_Cus,Tel_Cus) values ('','$Name_Cus','$Lastname_Cus','$Tel_Cus')";
$result2=mysql_db_query($DBName,$sql3);
$ID_Cus=mysql_insert_id();
echo $ID_Cus;
echo $ID_TBK;
$sql4="update timebooking set 21_Type_TBK='1',21_Cus_TBK='$ID_Cus',ID_Mas_21='$select4' where Date_TBK='$date' and ID_M='$ID_M'";
$result4=mysql_db_query($DBName,$sql4);
if($result4){
$sql5="delete from timebooking where ID_TBK=$auto_in_time";
$result5=mysql_db_query($DBName,$sql5);
}
echo "<script type='text/javascript'>alert('จองเวลา 21.00-22.00 เรียบร้อยแล้ว')</script>";
echo "<meta http-equiv=refresh content=0;url=booking_customer_show_after_confirm.php?ID_Cus=$ID_Cus>";
};
?>
ได้ผลลัพธ์คือ
อัพเดทแถวเดียว และลบแถวที่พึ่งเพิ่มเข้ามา
***กรณีที่ไม่มีข้อมูลใดอยู่เลยในตาราง หรือจองวันใหม่(ต้องสร้างRecordอยู่แล้ว)มันจะฟ้องว่าจองได้ แต่ก็จะลบแถวที่พึ่งinsertไป ซึ่งทำให้ไม่สามารถเลือกวันอื่น่ได้เลย
ไม่รู้ว่าจะเขียนโค้ดยังไงให้ตัวอย่างแรกไม่ต้องสร้างแถวใหม่ หรือให้ตัวอย่างที่สองให้มันเพิม่ข้อมูลได้หลังเปลี่ยนวันใหม่หรือยังไม่มีข้อมูลในTableโดยไม่ถูกลบ
**อย่างใดอย่างนึงก็ได้ครับ หรือสองอย่างยิ่งดี**
Tag : PHP, MySQL
|
|
|
|
|
|
Date :
2014-01-11 23:57:50 |
By :
Bigzeal |
View :
739 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แก้ไขรูปแบบที่2ครับ
|
|
|
|
|
Date :
2014-01-12 00:01:42 |
By :
Bigzeal |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับ ได้แล้ว
|
|
|
|
|
Date :
2014-01-12 17:56:50 |
By :
Bigzeal |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2014-01-12 22:23:17 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|