ASI FUNCIONA:
Código PHP:
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/"
)
));
ASI NO: (SOLO EN CHROME)
Código PHP:
while($datos=$db->fetch($result)){
array_push($array, array(
'id' => $datos['id'],
'title' => utf8_encode($datos['titulo']),
'start' => $datos['ano']."-".$datos['mes']."-".$datos['dia'],
'end' => $datos['anof']."-".$datos['mesf']."-".$datos['diaf'],
'color' => $datos['color'],
'url' => "evento/".$datos['id'].".html"
));
}
echo json_encode($array);
gracias!