$cnt = 0;
while ($row = $result->fetch_assoc())
{
$arre[$cnt]['id'] = $row['idevents'];
$arre[$cnt]['title'] = $row['title'];
$arre[$cnt]['start'] = "new Date(" . $row['start'] . "*1000)";
$arre[$cnt]['end'] = "new Date(" . $row['end'] . "*1000)";
$arre[$cnt]['allDay'] = $row['allday'];
$arre[$cnt]['url'] = $row['url'];
$cnt++;
}
$year = date('Y');
$month = date('m');
echo json_encode(array(
array(
'id' => 111,
'title' => "Event1",
'start' => "$year-$month-10",
'url' => "http://yahoo.com/"
),
array(
'id' => 222,
'title' => "Event2",
'start' => "$year-$month-20",
'end' => "$year-$month-22",
'url' => "http://yahoo.com/"
)
));
?>
The json_encode at the bottom of the script is a sample. I need to take the data inside of $arre and json_encode. The format of the json_encode will need to remain pretty much exactly the same as it is otherwise the program may find it not palatable and my program will not work. Does anyone know what the proper code technique would look like here?
Thank You!
json_encodecannot make it javascript for you, yournew Date()'s will have to beevaled javascript sided. If you need it, you might have to manually create your own and skipjson_encode. – Wrikken Dec 12 '12 at 23:20json_encode($arre)– twiz Dec 12 '12 at 23:25json_encodewill return valid JSON. The issue is that your array ($arre) doesn't contain the data you want. – ernie Dec 12 '12 at 23:31