On Aug 12, 11:48 am, Mark <johanns.m...@gmail.com> wrote:
> $event = json_encode($super_array);

How about simply:

$event = '['.$event.']';

on the server side, i personally recommend using the json2.js API
(i.e. JSON.parse() and JSON.stringify()) over $.getJSON(). getJSON
uses an HTTP GET, which is very rude vis-a-vis Apache logs (because
all your JSON gets logged there in urlencoded form).

Reply via email to