|
|
|
ปฏิทินกิจกรรมวันที่สิ้นสุดบนปฏิทินไม่ตรงกับวันที่สิ้นสุดในฐานข้อมูลครับ |
|
|
|
|
|
|
|
มีรายละเอียดเพิ่มเติมไหม๊ครับ ใช้ UI ตัวไหน Code อย่างไรบ้าง
|
|
|
|
|
Date :
2016-11-30 09:29:39 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใช้ FullCalendar แบบเราดิ่...
ปัญหาคงมาจากวนลูปไม่ครบ ลองไล่ Code ดีดีจร้า
|
|
|
|
|
Date :
2016-11-30 09:51:40 |
By :
apisitp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
code ตามนี้ครับ เพราะผมเเค่ selsect จากฐานข้อมูลมาโชว์ เฉยๆๆ
Code (PHP)
<?php
header("Content-type:application/json; charset=UTF-8");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
include_once ('include/connection.php');
//$q="SELECT * FROM tbl_event WHERE date(event_start)>='".$_GET['start']."' ";
//$q.=" AND date(event_end)<='".$_GET['end']."' ORDER by event_id";
$q="SELECT * FROM booking_place ORDER by idbooking_place";
$result = mysql_query($q) or die ("Error Query [".$q."]");
while($rs=mysql_fetch_array($result)){
$clor=$rs["book_status"];
if($clor == "0"){
$color = "#EC971F";
}
if($clor == "1"){
$color = "#449D44";
}
if($clor == "2"){
$color = "#D9534F";
}
$json_data[]=array(
"id"=>$rs["idbooking_place"],
"title"=>$rs["name_book"],
"start"=>$rs["date_f"],
"end"=>$rs["date_e"],
"color"=>$color,
//"url"=>$rs->event_url,
//"allDay"=>($rs->event_allDay==true)?true:false
// กำหนด event object property อื่นๆ ที่ต้องการ
);
//$json= array_push($json, $json_data);
}
$json= json_encode($json_data);
echo $json;
?>
|
|
|
|
|
Date :
2016-11-30 13:30:01 |
By :
chairatfa |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ถามใหม่-ไปเอา code ต้นฉบับมาจากไหนครับ ต้องทราบที่มาที่ไป แล้วจะตามไปดูว่าเกิดจากอะไรครับ
Edit- ลองเอา ORDER by idbooking_place ออกไป เรียกมาแสดงบนปฏิทิน ไม่ต้องมี order น่าจะเวิร์คกว่า
|
ประวัติการแก้ไข 2016-11-30 15:09:30 2016-11-30 15:13:27
|
|
|
|
Date :
2016-11-30 15:03:53 |
By :
apisitp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|