|
|
|
สอบถามเรื่อง ตารางปฏิทินครับ ดึงข้อมูลจาก Database แล้วมันไม่มาแสดงให้ครับ |
|
|
|
|
|
|
|
จากรูปผมเขียน Code โดยมีต้นแบบจาก ระบบจองรถ ของพี่ท่านหนึ่งครับ แล้วนำมาเปลี่ยนแปลง Code sql ให้ดึงจาก Database ของผมเอง
แต่พอเปลี่ยนไปแล้วมันกลับไม่ขึ้นให้ครับ
Code หน้า getCalendar2.php
Code (PHP)
<?php
header("content-type:text/html;charset=utf-8");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
include "connect.php";
$con_db=mysql_connect($host,$user,$pw) or die("Cannot connect db server");
$select_db=mysql_select_db($dbname);
mysql_query("SET character_set_results=utf8");
mysql_query("SET character_set_client='utf8'");
mysql_query("SET character_set_connection='utf8'");
mysql_query("collation_connection = utf8");
mysql_query("collation_database = utf8");
mysql_query("collation_server = utf8");
if($_GET['gData']){
$event_array=array();
$i_event=0;
$q="SELECT * FROM room31 WHERE date(sdate31)>='".date("Y-m-d",$_GET['start'])."' ";
$q.=" AND date(todate31)<='".date("Y-m-d",$_GET['end'])."' ORDER by id31";
$qr=mysql_query($q);
while($rs=mysql_fetch_array($qr)){
$event_array[$i_event]['id']=$rs['id31'];
$event_array[$i_event]['title']=$rs['name31'].",".$rs['agencies31'].",".$rs['objective31'].",".$rs['status31'];
$event_array[$i_event]['start']=$rs['sdate31'];
$event_array[$i_event]['end']=$rs['todate31'];
$event_array[$i_event]['url']='show_31.php?id='.$rs['id31'];
$i_event++;
}
echo json_encode($event_array);
exit;
}
?>
Code หน้า 27.03.01_test.php
Code (PHP)
<?PHP
session_start();
session_destroy();
?>
<html>
<title>:: ตารางห้อง ::</title>
<!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">
<META content="MSHTML 6.00.6000.20772" name=GENERATOR http-equiv="Content-Type" content="text/html; charset=utf-8">
<SCRIPT type=text/javascript>
<!--
function MM_jumpMenu(targ,selObj,restore){ //v3.0
eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
if (restore) selObj.selectedIndex=0;
}
//-->
</SCRIPT>
<META name=GENERATOR content="MSHTML 8.00.6001.18812">
<script type="text/javascript" src="datetimepicker_css.js"></script>
<link rel='stylesheet' type='text/css' href='fullcalendar/redmond/theme.css' />
<link rel='stylesheet' type='text/css' href='fullcalendar/fullcalendar.css' />
<script type='text/javascript' src='fullcalendar/jquery/jquery.js'></script>
<script type='text/javascript' src='fullcalendar/jquery/jquery-ui-custom.js'></script>
<script type="text/javascript" src="fullcalendar/fullcalendar.min.js"></script>
<script type="text/javascript">
$(function(){
$('#calendar').fullCalendar({
header: {
left: 'month,agendaDay',
center: 'title',
right: 'prev,next today'
},
//editable: true, ??????????????????
theme:true,
events: "getCalendar2.php?gData=1",
loading: function(bool) {
if (bool) $('#loading').show();
else $('#loading').hide();
}
});
});
</script>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="mos-css/mos-style.css">
<body><center>
<div id="header">
<div class="inHeader">
<div class="mosAdmin">
<a href="form_add.php"></a><a href="logout.php"></a>
<table width="200" border="1">
<tr>
<td>ชื่อผู้ใช้ :
<input name="txtUsername" type="text" id="txtUsername" /></td>
<td>รหัสผ่าน :
<input name="txtPassword" type="password" id="txtPassword" /></td>
<td><input type="submit" name="Submit" value="Login" class="button"></td>
</tr>
</table>
</div>
</div>
<div id="wrapper"><center>
<table width="1169" height="480" border="1" >
<p></p>
<table width="848" height="642" border="1" >
<tr>
<td width="625" rowspan="3" nowrap="nowrap" bgcolor="#FFFF99"> <div align="center" id="calendar" ></div> </td>
<td nowrap="nowrap" bgcolor="#FFFF66"><div align="center">
<h2><a href = "../formjong.php" target = "_self">จองห้องคลิก</a></h2>
</div>
<td width="664" align="center" ><p> </p></td>
</tr>
<tr>
<td width="207" nowrap="nowrap" bgcolor="#FFFF66"><div align="center">รายละเอียด ห้อง 27.03.01</div></td>
</tr>
<tr>
<td nowrap="nowrap" bgcolor="#FFFF66"><p align="center">ประเภทห้อง ห้องเรียนคอมพิวเตอร์<br />
ขนาดความจุ 60 ที่นั่ง</p>
<p align="center">วันและเวลา เปิดให้บริการ <br />
จันทร์ – ศุกร์ ในเวลา 08.30-19.30 น. <br />
ช่วงปิดภาคเรียน ในเวลา 08.30-16.30 น. <br />
เสาร์ – อาทิตย์ ในเวลา 08.30-16.30 น. </p></td>
</tr>
<tr>
<td colspan="2" bgcolor="#FFFF99"><div align="center">ตารางการใช้ห้อง
</p>
</div>
<p>
<!--ส่วนตาราง-->
<script language="javascript">
function change_bg(obj,id) {
//alert(obj.checked);
//alert(obj.value);
var frm = document.forms[0];
var message = "";
var objID = "";
var chkRow = obj.value;
chkRow = chkRow.substr(0,2);
var chkDiff = 0;
var loop = 0;
var chkOver = 0;
for (i = 0; i < frm.elements['use_time[]'].length; i++) {
objID = frm.elements['use_time[]'][i].id;
if (frm.elements['use_time[]'][i].checked){
message = frm.elements['use_time[]'][i].value;
loop++;
}
message = message.substr(0,2);
if (message == chkRow) {
if (loop > 5) {
chkOver = 1;
} //end if
} else {
if (loop > 0) {
chkDiff = 1;
} //end if
} //end if
} //end for
if (chkDiff == 1) {
alert('กรุณาเลือกในวันเดียวกัน หรือแถวเดียวกันเท่านั้น');
obj.checked = false;
} //endif
if (chkOver == 1) {
alert('กรุณาเลือกจำนวนชั่วโมงไม่เกิน 5 ชั่วโมงติดต่อกัน');
obj.checked = false;
} //endif
var color;
if (obj.checked) {
//color = "#0099FF";
color = "#FF9900"; //สีส้ม
} else {
color = "#009900"; // สีเขียว
} //end if
if (document.getElementById)
{
var thestyle= eval ('document.getElementById("'+id+'").style');
thestyle.backgroundColor=color;
}
} //end function
function MM_jumpMenu(targ,selObj,restore){ //v3.0
eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
if (restore) selObj.selectedIndex=0;
}
</script>
<!--ใส่วันที่ได้ที่่ตรงนี้ -->
<style type="text/css">
<!--
.style2 {font-size: 12px}
.style3 {color: #FFFFFF}
-->
</style>
<?php
$L_w[1]="จันทร์";
$L_w[]="อังคาร";
$L_w[]="พุธ";
$L_w[]="พฤหัส";
$L_w[]="ศุกร์";
$L_w[]="เสาร์";
$L_w[]="อาทิตย์";
?>
<?php
if(!isset($_POST[Submit])){
?>
<?php
$connect=mysql_connect("localhost","root","1234")or die("no connect database");
mysql_query("use test");
mysql_query("SET CHARACTER SET tis620");
$sql="select * from time_table where term_ids='".$_GET[term_ids]."' ";
$result=mysql_query($sql);
$show_data=mysql_fetch_array($result);
$time_max=$show_data[st_time_last]-1;
//echo $show_data[st_id];
?>
</span>
</p>
<form action="<?php echo $_SERVER['../projact/meeting/PHP_SELF']?>" method="post" name="time_table_set" class="style2">
<table width="100%" height="100%" border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td bgcolor="#ffffff">
<table width="100%" height="100%" border="0" cellspacing="1" cellpadding="2">
<?php
for($i=0;$i<=7;$i++){
if($i==0){
$color="#FF6A6A";
}elseif($i==1){
//$color="#FF9966";
$color="#FFFF99";
//$msg[0]="วันที่ / เวลา";
}elseif($i==2){
$color="#FF99CC";
}elseif($i==3){
$color="#66CD00";
}elseif($i==4){
$color="#FF9966";
}elseif($i==5){
$color="#66CCFF";
}elseif($i==6){
$color="#CC99FF";
}elseif($i==7){
$color="#FF3399";
}
?>
<tr>
<td align="left" bgcolor="<?php echo $color?>">
<!-- <?php echo $msg[$i]?> -->
<!--<?php echo $date_t[$i]?> -->
<?php
if($i==0){
echo"วันที่ / เวลา";
}else{
echo $L_w[$i];
}
?>
</td>
<?php
for($t=7;$t<=17;$t++){
$connect=mysql_connect("localhost","root","1234")or die("no connect database");
mysql_query("use test");
mysql_query("SET CHARACTER SET tis620");
$sql2="select * from time_table where tb_time='".$t."' and tb_week='".$i."'";
$result2=mysql_query($sql2);
$num=mysql_num_rows($result2);
$show_data2=mysql_fetch_array($result2);
if($i==0){
$bg="#CCFF99";
}elseif($num==1){
$bg="#20B2AA";//สีน้ำเงิน#CC9999
//$bg="#CC99CC";//สีม่วง
//$bg="#CC9999";//สีม่วง2
$borc="red";
}elseif($num==0){
$bg="#B0E2FF";
}
?>
<?php
if($num==1 and $show_data2[tb_setting]==1){
?>
<td align="center" bgcolor="<?php echo $bg?>" colspan="<?php echo $show_data2[tb_col]?>" bordercolor="<?php echo $borc?>">
<?php
if($i==0){
$time_next=$t+1;
$time_list=$t.".00"."-".$time_next.".00";
echo $time_list;
}else{
?>
<?php echo $show_data2[tb_subject]?>
<?php
}
?>
</td>
<?php
}elseif($num==0){
?>
<label for="<?php echo $t.$i?>">
<td align="center" id="<?php echo $i.".".$t?>" bgcolor="<?php echo $bg?>">
<?php
if($i==0){
$time_next=$t+1;
$time_list=$t.".00"."-".$time_next.".00";
echo $time_list;
}else{
?>
<?php
}
?>
</td>
</label>
<?php
}
?>
<?php
}
?>
</tr>
<?php
}
?>
</table> </td>
</tr>
</table>
</form>
<?php
}//end if
?>
<?php
if(isset($_POST[Submit])){
if(count($_POST[use_time])==0){
echo"<script>alert('กรุณาเลือกก่อน');history.back();</script>";
}
?>
<form action="../projact/meeting/insert_time.php" method="post" name="subject">
<input name="cols_table" type="hidden" value="<?php echo count($_POST[use_time])?>" />
<?php
for($i=0;$i<count($_POST[use_time]);$i++){
//echo $_POST[use_time][$i];
?>
<input name="use_time[]" type="hidden" value="<?php echo $_POST[use_time][$i]?>" />
<?php
}
?>
</form>
<?php
}
?>
</tr>
</table>
<tr>
<td rowspan="2" bgcolor="#FFFF99"> </td>
</tr>
</body>
</td>
</tr>
</table>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
</div>
</center>
</center>
<body>
</html>
หน้า 27.03.01_test.php
Tag : PHP, HTML/CSS, JavaScript, jQuery
|
|
|
|
|
|
Date :
2014-05-04 19:25:33 |
By :
MaliNo |
View :
3470 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|