Im trying to pass a mulitidimensional Javascript array to another page on my site by:
using JSON.stringify on the array
assigning the result
When you use JSON stringify then use html_entity_decode first before json_decode.
$tempData = html_entity_decode($tempData); $cleanData = json_decode($tempData);