我試圖獲取從數據庫事件到日曆,但在這個階段,它只是輸出它的數據庫和JSON獲得的第一個事件時,我贊同它,它只是返回的第一個事件完整的日曆剛剛得到的第一個事件
<?php
include("dbcon.php");
$events1 = array();
$sql345="select * from takimet";
$result = mysql_query($sql345)or die(mysql_error());
while ($row=mysql_fetch_array($result)){
$id = $row['agent_id'];
$title = $row['ezitimi'];
$start = $row['datestamp'];
$events1 = array(
'id' => "$id",
'title' => "$title",
'start' => "$start"
);
}
echo json_encode($events1);
?>
它仍然在日曆僅輸出所述第一事件在這裏是其中i取JSON –
事件:;, 編輯[]:真, droppable:true, –
請不要使用[mysql_'數據庫擴展](http://stackoverflow.com/questions/12859942/why-shouldnt-i-use-mysql-functions-in-php),它 是棄用(一去不復返在PHP7) 特別是如果你剛開始學習PHP,花你的精力學習'PDO'或'mysqli_'數據庫擴展, [這裏是一些幫助來決定使用哪一種(http://stackoverflow.com/questions/12859942/why-shouldnt-i-use-mysql-functions-in-php) – RiggsFolly