I have an array in PHP with id and blob image binary data.
$mapImages = $mapImages."['".$row['_URI']."','".$imageRow['VALUE']."],";
When I echo this array into a java script variable:
var mapImages = [<?php echo $mapImages; ?>];
Java script breaks ... Finally I would like to use those ID's to properly place images on google maps.
json_encode.