I'm using this html and javascript to send json data to my php file. http://jsfiddle.net/ExpertSystem/9aWNj/
How to access it from there in php to echo out a given element?
Something along the lines of:
$value = json_decode($_POST["newOrder"])
echo $value[1];
etc
I'm not sure how to retrieve data from this.