New to Dojo, new to json. Most likely not a good combination...
Recommendations are to use json-comment-filtered for doing json calls from client-server.
I am a back-end perl programmer mostly... the web stuff is fun but not my main calling. I'm using the CPAN's JSON parse/converter.
Any pointers would be appreciated.
Current Perl pseudo code is:
use JSON; # Code to do SQL lookup while ($pointer = $sth->fetchrow_hashref) $data .= $json->objToJson($pointer) print $cgi->header(); print $data;
