|
|
|
ขอถามผู้เชี่ยวชาญด้าน FullCalendar หน่อย ผมทำเป็น 2 สถานะ คือ Active = No Active = yES |
|
|
|
|
|
|
|
ทำไมจะต้องใช้ JSON ด้วยครับ
|
|
|
|
|
Date :
2013-03-22 06:16:09 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อ่อ เป็น Fullcalendar มันมียุ่แ้ลว ครับ
|
|
|
|
|
Date :
2013-03-22 08:23:00 |
By :
bankNay |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่ได้เป็นผู้เชียวชาญนะครับแต่คิดว่าผิดตรงแต่ลองแก้ไขเป็นบรรทัดที่32
Code
<?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 car WHERE date(timeback)>='".date("Y-m-d",$_GET['start'])."' ";
$qr=mysql_query($q);
while($rs=mysql_fetch_array($qr)){
$event_array[$i_event]['id']=$rs['id'];
$event_array[$i_event]['title']=$rs['locate'].",".$rs['arrive'].",".$rs['timeback'];
$event_array[$i_event]['start']=$rs['timeback'];
//$event_array[$i_event]['end']=$rs['timeback'];
//============================================================
// ลองแบบนี้ดูครับ (เข้าใจว่า Active ต้องเอามาจาก DB นะครับ)
if ($rs['Active'] == 'YES'){
$event_array[$i_event]['color']='black'; // ส่งค่า Class name ไปครับ
}else{
$event_array = 'green';
}
//============================================================
$event_array[$i_event]['url']='show2.php?id='.$rs['id'];
$i_event++;
}
echo json_encode($event_array);
exit;
}
?>
|
|
|
|
|
Date :
2013-03-29 13:50:24 |
By :
pom_moq |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แนะนำผมด้วยคับ
|
|
|
|
|
Date :
2014-07-30 12:05:53 |
By :
num030 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
บรรที่ 33 ต้องเป็บแบบนี้ปะครับ ลองตรวจดู $event_array[$i_event] = 'green';
|
|
|
|
|
Date :
2014-07-30 13:32:43 |
By :
Manussawin |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|