|
|
|
ช่วยดูการ insert และ update ให้หน่อยครับ ผมจะอัพเดท Status มันไม่ขึ้นให้อะครับผม |
|
|
|
|
|
|
|
รายละเอียดของการตอบ ::
คือแบบว่า อยากต้องการให้ insert ข้อมูลในหน้า form_reservation.php ไปในตาราง person
ตาราง person
และพอเพิ่มข้อมูลลงไปแล้ว ก็อยากให้ ฟิว Status ใน ตาราง room เปลี่ยน จาก 0 เป็น 2 อ่ะครับ
ตาราง room
ส่วนอันนี้หน้า code add_reservation.php
Code (PHP)
<?php
session_start();
?>
<!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" />
<meta http-equiv="refresh" content="1;URL=reservation.php?number=<?php echo"$room_text"; ?>">
<title>บันทึกข้อมูล</title>
</head>
<body bgcolor="#FF99FF">
<center><table width="93%">
<tr>
<td valign="top" bgcolor="#FF99FF" align="center"><p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<table width="489">
<tr>
<td align="center"><span style="font-family:'JasmineUPC'; font-size:34px; color:#FFF;">
<?php
include("Myconnect.php");
mysql_query("set character set utf8");
mysql_query("SET character_set_results=utf8");
mysql_query("SET character_set_client=utf8");
mysql_query("SET character_set_connection=utf8");
$strSQL = "SELECT * FROM person WHERE Id_room = '".$_POST['room_text']."' AND((dateStart between '".$_POST["dateStart"]."' and '".$_POST["dateEnd"]."') or ";
$strSQL .= " (dateEnd between '".$_POST["dateStart"]."' and '".$_POST["dateEnd"]."')) ";
$objQuery = mysql_query($strSQL);
$objResult = mysql_fetch_array($objQuery);
if($objResult)
{
echo "วันและเวลาที่จองห้องของคุณ ถูกจองไปแล้ว!";
}
else
{
$strSQL2 = "INSERT INTO person ";
$strSQL2 .=" ( id_person, id_member, Id_room, tiname_ps, fname_ps, lname_ps, sex_ps, ident_ps, dateStart, dateEnd, totolDay, checkrm_ps, tel_ps) ";
$strSQL2 .=" VALUES (NULL,'".$_SESSION['MM_UserName']."','".$_POST["room_text"]."','".$_POST["tname_text"]."','".$_POST["fname_text"]."' ";
$strSQL2 .=" ,'".$_POST["lname_text"]."','".$_POST["gender"]."','".$_POST["idnum_text"]."' ";
$strSQL2 .=" ,'".$_POST["dateStart"]."','".$_POST["dateEnd"]."','".$_POST["totolDay"]."','".$_POST["checkrm"]."' ";
$strSQL2 .=" ,'".$_POST["tel_text"]."')";
$objQuery2 = mysql_query($strSQL2);
mysql_query("set character set utf8");
mysql_query("SET character_set_results=utf8");
mysql_query("SET character_set_client=utf8");
mysql_query("SET character_set_connection=utf8");
echo "จองห้องพักเรียบร้อยแล้ว !";
}
mysql_close();
?>
<body>
</span></td>
</tr>
</table>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p></td>
</tr>
</table>
</center>
</body>
</html>
Tag : PHP, HTML/CSS, JavaScript, JAVA, Windows
|
|
|
|
|
|
Date :
2017-04-03 20:41:48 |
By :
korn112 |
View :
791 |
Reply :
5 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อยากรู้มันได้ค่าอะไรก็ให้ใช้การ echo $strSQL; แล้วเอา Query มารันดูบน phpMyAdmin ครับ
|
|
|
|
|
Date :
2017-04-04 09:07:27 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตอบในกระทู้เก่าไปแล้ว .... แค่เขียนคิวรี่ชุดที่ 2 ให้เป็น
|
|
|
|
|
Date :
2017-04-04 09:38:32 |
By :
apisitp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2017-04-04 11:02:08 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตามนั่นล่ะ ท่านวิน
|
|
|
|
|
Date :
2017-04-04 13:22:48 |
By :
apisitp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|