|
|
|
ขอถามอีกอันครับ อยากถามว่า ถ้าจะให้มันทำงานแบบถ้านอกเหนือเงื่อนไขนี้ |
|
|
|
|
|
|
|
อยากถามว่า ถ้าจะให้มันทำงานแบบถ้านอกเหนือเงื่อนไขนี้
Code (PHP)
<?
$house=$_POST['house'];
$date_in=$_POST['date_in'];
$date_out=$_POST['date_out'];
$total=$_POST['total'];
$date=date('Y-m-d');
$sql="select date_out from reserve_detail WHERE house_id = '$house' limit 1 ";
$result=mysql_db_query($dbname, $sql);
while(list($ndate)=mysql_fetch_array($result)){ //ตัวแปร $id $name $ndate ใช้กำหนดค่าเพื่อใช้งาน
$day1=explode('-', $date_in);
?>
<?php
function compareDate($date1,$date2) { //เอาไว้เช็ควันที่ว่าซ้ำไหม
$arrDate1 = explode("-",$date1);
$arrDate2 = explode("-",$date2);
$timStmp1 = mktime(0,0,0,$arrDate1[1],$arrDate1[2],$arrDate1[0]);
$timStmp2 = mktime(0,0,0,$arrDate2[1],$arrDate2[2],$arrDate2[0]);
print"$Date1";
if ($timStmp1 == $timStmp2) {
echo "<br><p align=center><span class=style1>วันที่เข้าพักซ้ำ กรุณากรอกใหม่อีกครั้ง</span></p>";
echo "<p align=center><input name=Submit type=submit class=style2 onclick=jascript:history.go(-1) value=กลับไปกรอกใหม่ /></p>";
} else if ($timStmp1 < $timStmp2) {
echo "<br><p align=center><span class=style1>วันที่เข้าพักซ้ำ กรุณากรอกใหม่อีกครั้ง</span></p>";
echo "<p align=center><input name=Submit type=submit class=style2 onclick=jascript:history.go(-1) value=กลับไปกรอกใหม่ /></p>";
}
}
echo compareDate("$date_in","$ndate");
?>
<?
}
?>
แล้วให้มันทำงานตามคำสั่ง
Code (PHP)
<?
$date=date('Y-m-d'); //วันที่สั่งสินค้า
$house=$_POST['house'];
$date_in=$_POST['date_in'];
$date_out=$_POST['date_out'];
$total=$_POST['total'];
$sql="select * from `member` where user='$user'";
$result=mysql_db_query($dbname, $sql);
$data=mysql_fetch_array($result);
$member_id=$data['member_id'];
$sql1="INSERT INTO `reserve` (`reserve_id`, `member_id`, `date`, `r_status`, `p_status`, `cancel_date`) VALUES (NULL, '$member_id', '$date', 'YES', 'NO', '');";
mysql_db_query($dbname, $sql1);
$sql="select * from `reserve` where member_id='$memid'";
$result=mysql_db_query($dbname, $sql);
$data=mysql_fetch_array($result);
$reserveid=$data['reserve_id'];
session_register('reserveid');
print"$reserveid";
$sql2="select * from `reserve` order by reserve_id desc";
$result1=mysql_db_query($dbname, $sql2);
$data=mysql_fetch_array($result1);
$reserve_id=$data['reserve_id'];
$status=0;
$sql3="INSERT INTO `reserve_detail` (`reservedetail_id`, `house_id`, `reserve_id`, `date_in`, `date_out`, `total`) VALUES (NULL, '$house', '$reserve_id', '$date_in', '$date_out', '$total');";
mysql_db_query($dbname, $sql3);
?>
นี้อ่ะครับ จากโค้ดที่เขียนด้านล่างมันจะทำงานทุกครั้งไม่ว่าโค้ดแรกจะเป็นจริงหรือไม่อ่ะครับ
Code (PHP)
<?
session_start()
?>
<?
include "config.php";
?>
<!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" />
<title>Untitled Document</title>
<link href="style/style.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="lightbox.css" type="text/css" media="screen" />
<script type="text/javascript" src="lightbox.js"></script>
<style type="text/css">
<!--
.style1 {color: #00CCFF}
-->
<!--
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
-->
</style>
<link href="style/style.css" rel="stylesheet" type="text/css" />
<link href="style/menu.css" rel="stylesheet" type="text/css" />
</head>
<body>
<table width="1280" height="1024" border="0" cellpadding="0" cellspacing="0">
<tr>
<td valign="top" bgcolor="#FFFFFF"><table width="900" height="1022" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td valign="top" bgcolor="#FFFFFF"><table width="899" height="52" border="0" cellpadding="0" cellspacing="0">
<tr>
<td bgcolor="#00FFCC"> </td>
</tr>
</table>
<table width="899" height="40" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="698" height="32" valign="top"><? include "menu/menu.php";?></td>
</tr>
</table>
<table width="899" height="847" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="204" valign="top" bgcolor="#FFFFFF"><? include "menu/main_menu.php";?></td>
<td width="695" align="center" valign="top" bgcolor="#FFFFFF" class="bar-border3"><table width="200" border="0" cellspacing="0" cellpadding="0">
<tr>
<td> </td>
</tr>
</table>
<?
$house=$_POST['house'];
$date_in=$_POST['date_in'];
$date_out=$_POST['date_out'];
$total=$_POST['total'];
$date=date('Y-m-d');
$sql="select date_out from reserve_detail WHERE house_id = '$house' limit 1 ";
$result=mysql_db_query($dbname, $sql);
while(list($ndate)=mysql_fetch_array($result)){ //ตัวแปร $id $name $ndate ใช้กำหนดค่าเพื่อใช้งาน
$day1=explode('-', $date_in);
?>
<?php
function compareDate($date1,$date2) { //เอาไว้เช็ควันที่ว่าซ้ำไหม
$arrDate1 = explode("-",$date1);
$arrDate2 = explode("-",$date2);
$timStmp1 = mktime(0,0,0,$arrDate1[1],$arrDate1[2],$arrDate1[0]);
$timStmp2 = mktime(0,0,0,$arrDate2[1],$arrDate2[2],$arrDate2[0]);
print"$Date1";
if ($timStmp1 == $timStmp2) {
echo "<br><p align=center><span class=style1>วันที่เข้าพักซ้ำ กรุณากรอกใหม่อีกครั้ง</span></p>";
echo "<p align=center><input name=Submit type=submit class=style2 onclick=jascript:history.go(-1) value=กลับไปกรอกใหม่ /></p>";
} else if ($timStmp1 < $timStmp2) {
echo "<br><p align=center><span class=style1>วันที่เข้าพักซ้ำ กรุณากรอกใหม่อีกครั้ง</span></p>";
echo "<p align=center><input name=Submit type=submit class=style2 onclick=jascript:history.go(-1) value=กลับไปกรอกใหม่ /></p>";
}
}
echo compareDate("$date_in","$ndate");
?>
<?
}
?>
[color=brown]<?
$date=date('Y-m-d'); //วันที่สั่งสินค้า
$house=$_POST['house'];
$date_in=$_POST['date_in'];
$date_out=$_POST['date_out'];
$total=$_POST['total'];
$sql="select * from `member` where user='$user'";
$result=mysql_db_query($dbname, $sql);
$data=mysql_fetch_array($result);
$member_id=$data['member_id'];
$sql1="INSERT INTO `reserve` (`reserve_id`, `member_id`, `date`, `r_status`, `p_status`, `cancel_date`) VALUES (NULL, '$member_id', '$date', 'YES', 'NO', '');";
mysql_db_query($dbname, $sql1);
$sql="select * from `reserve` where member_id='$memid'";
$result=mysql_db_query($dbname, $sql);
$data=mysql_fetch_array($result);
$reserveid=$data['reserve_id'];
session_register('reserveid');
print"$reserveid";
$sql2="select * from `reserve` order by reserve_id desc";
$result1=mysql_db_query($dbname, $sql2);
$data=mysql_fetch_array($result1);
$reserve_id=$data['reserve_id'];
$status=0;
$sql3="INSERT INTO `reserve_detail` (`reservedetail_id`, `house_id`, `reserve_id`, `date_in`, `date_out`, `total`) VALUES (NULL, '$house', '$reserve_id', '$date_in', '$date_out', '$total');";
mysql_db_query($dbname, $sql3);
?>
<meta http-equiv="Refresh" content="100; url=reserve_detail.php" />
<p> </p>
<p>
</p>
</p></td>
</tr>
</table>
<table width="900" height="57" border="0" cellpadding="0" cellspacing="0">
<tr>
<td valign="top" bgcolor="#FFFFFF"> </td>
</tr>
</table> <p> </p></td>
</tr>
</table></td>
</tr>
</table>
</body>
</html>
Tag : - - - -
|
|
|
|
|
|
Date :
2009-11-13 08:49:27 |
By :
motoadd |
View :
829 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แง่ว ไม่ทราบค่ะ
|
|
|
|
|
Date :
2009-11-13 08:53:27 |
By :
หยก |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่เป็นไรครับรอผู้รู้ต่อไป
|
|
|
|
|
Date :
2009-11-13 09:21:25 |
By :
motoadd |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลอง print ออกมาดูได้มั้ยครับก่อน if น่ะ
|
|
|
|
|
Date :
2009-11-13 10:07:56 |
By :
jeabz |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|