It looks like you're new here. If you want to get involved, click one of these buttons!
$arr = array ('a'=>$var1,'b'=>$var2,'c'=>$var3,'d'=>$var4,'e'=>$var5);
echo json_encode($arr);'onComplete' :
function(event, queueID, fileObj, response, data) {
$('div#one').html(/* the first decoded json var here /*);
$('div#two').html(/* the second decoded json var here /*);
$('div#three').html(/* the third decoded json var here /*);
$('div#four').html(/* the forth decoded json var here /*);
$('div#five').html(/* the fifth decoded json var here /*);
}
'onComplete' :
function(event, queueID, fileObj, response, data) {
eval(\"var obj1=\"+response);
$('div#one').html(obj1.a);
$('div#two').html(obj1.b);
$('div#three').html(obj1.c);
$('div#four').html(obj1.d);
$('div#five').html(obj1.e);
}