Hi I'm trying to pass JS object to a php script through jquery.ajax(), basically:
var bigArray = new Object();
//code
//start loop
bigArray[x] = {name: exname, id: exID, order:e, set: setBox, inc: incBox, example: exampleBox, day: i};
So its pretty much an array of these objects.
var anotherTest = $.toJSON(bigArray);
var ajxFile = "routineajax.php";
$.ajax({
type: 'POST',
processData: false,
url: ajxFile,
data: anotherTest,
success: function(data) {
$('#result').html(data);
alert('Load was performed.');
}
});
});
The PHP side script
print_r($_POST);
$params = json_decode($_POST);
print_r($params)
The AJAX call is going through and I can see in firebug but print_r($_POST) is returning an empty array. While if I change it to $_GET in both the $.ajax function and php script it works. My main problem is I'm getting this error message: Warning: json_decode() expects parameter 1 to be string, array given in
Any ideas?
After adding this snippet to the php file
$data = file_get_contents('php://input');
var_dump($data);
var_dump(json_decode($data));
I'm getting this output
string'{"0"{"name":"Decline`Abs","id":"54","order":0,"set":"","inc":"","example":"","day":1}}' (length=87)`
object(stdClass)[2]
public '0' =>
object(stdClass)[4]
public 'name' => string 'Decline Abs' (length=11)
public 'id' => string '54' (length=2)
public 'order' => int 0
public 'set' => string '' (length=0)
public 'inc' => string '' (length=0)
public 'example' => string '' (length=0)
public 'day' => int 1
So at least it's going through, I'm not sure how to access it though, a step in the right direction!