ช่วยดูให้หน่อยค่ะ เรื่องปฏิทินกิจกรรม เมื่อคลิกวันที่จองแล้ว หารายการจองไม่เจอค่ะ
พี่ค่ะ ช่วยหน่อยค่ะ คือเวลาเลือกวันที่จองในปฏิทินกิจกรรมแล้ว หารายการจองไม่เจอค่ะ ผิดตรงไหนค่ะ
Code (calendar)
$sql="select * from reservroom where serviceID and dateService='$year-$month-$d' ";
//echo $sql."<br>";
$query=mysql_query($sql);
$result=mysql_fetch_array($query);
}
else
{
$result="";
}
if($result)
{
$link="show.php?dateService=$result[dateService]";
$title="$result[subject]";
Code (reserv_roomsave)
<?php
session_start();
$ses_userID = $_SESSION["ses_userID"];
?>
<meta http-equiv="Content-Type" content="text/html; charset=tis-620" />
<?php
include("config.php");
$subject=$_REQUEST["subject"];
$now = date("Y-m-d ");
$dateService=$_REQUEST["dateService"];
$timeIn=$_REQUEST["timeIn1"].':'.$_REQUEST["timeIn2"];
$timeOut=$_REQUEST["timeOut1"].':'.$_REQUEST["timeOut2"];
$classID=$_REQUEST["classID"];
$departmentsID=$_REQUEST["departmentsID"];
$branchID=$_REQUEST["branchID"];
$amount=$_REQUEST["amount"];
$checkError = ini_get('error_reporting');
error_reporting($checkError ^ E_NOTICE);
$equipment = $_REQUEST["equip1"].', '.$_REQUEST["equip2"].', '.$_REQUEST["equip3"].', '.$_REQUEST["equip4"].', '.$_REQUEST["equip5"];
$detail=$_REQUEST["detail"];
$sql="INSERT INTO reservroom(serviceID,subject,dateSave,dateService,timeIn,timeOut,userID,classID,departmentsID,branchID,amount,equipment,detail)";
$sql.="VALUES ('','$subject','$now','$dateService','$timeIn','$timeOut','$ses_userID','$classID','$departmentsID','$branchID','$amount','$equipment','$detail')";
echo "<meta http-equiv=\"refresh\" content=\"1;URL=user_home.php\">";
mysql_query($sql,$conn)
or die("ไม่สามารถเพิ่มข้อมูลลงสู่ตาราง reservroom ได้".mysql_error());
//echo "การเพิ่มข้อมูลสมบูรณ์";
echo "<meta http-equiv=\"refresh\" content=\"1;URL=user_home.php\">";
mysql_close($conn);
?>
Code (show)
<meta http-equiv="Content-Type" content="text/html; charset=tis-620" />
<link href="css/style.css" rel="stylesheet" type="text/css" />
<?php include("header.php"); ?>
<?php include("menuuser.php"); ?>
<td width="60%" align="center" valign="top"><meta http-equiv=Content-Type content="text/html; charset=utf-8">
<br />
<?php include("calendar.php"); ?><br />
<br />
<table width="90%" border="1" cellspacing="0" cellpadding="0">
<tr>
<td width="24%" align="center">เรื่อง</td>
<td width="12%" align="center">เวลา</td>
<td width="20%" align="center">เพิ่มเติม</td>
<td width="17%" align="center">สถานะ</td>
</tr>
<?php include ("config.php");
$sql="select * from reservroom where serviceID='$dateService' ";
$result = mysql_query($sql,$conn)
or die("ไม่สามารถดึงข้อมูลจากตาราง admin ได้".mysql_error());
while($data = mysql_fetch_array($result))
{
?>
<tr>
<td align="left"><?php echo $data["subject"];?></td>
<td align="center"><?php echo $data["timeIn"];?> - <?php echo $data["timeOut"];?></td>
<td align="center">ดูข้อมูล</td>
<td align="center"><span class="BgSky2">
<?php
if($data['status']=='1') echo 'อนุมัติ';
if($data['status']=='0') echo 'รออนุมัติ';
?>
</span></td>
<?php
}
?>
</tr>
</table>
<br />
<br />
<br />
<br />
<br /></td>
<?php include("menuright.php"); ?>
<?php include("footer.php"); ?>
Tag : PHP
Date :
2014-02-14 00:36:56
By :
june_191
View :
1368
Reply :
8
Capture ตัว Data ใน Table มาให้ดูหน่อยครับ
Date :
2014-02-14 07:13:07
By :
mr.win
Code (calendar)
session_start();
$ses_userID = $_SESSION["ses_userID"];
$sql="select * from reservroom where serviceID='$ses_userID' and dateService='$year-$month-$d' ";
//echo $sql."<br>";
$query=mysql_query($sql) or die(mysql_error());
$result=mysql_fetch_array($query);
Date :
2014-02-14 11:26:50
By :
sakuraei
18.$sql="select * from reservroom where serviceID='$dateService' ";
แก้ไขเป็น
18.$sql="select * from reservroom where dateService='$dateService' ";
Date :
2014-02-14 11:57:49
By :
sakuraei
Load balance : Server 00