javascriptからphpに配列の配列を渡したいです。それを行う最も簡単な方法は何ですか?
JavaScriptの配列が好き:
var resultArray = [
{"id":"1", "description":"aaa", "name":"zzz", "titel":"mmm"},
{"id":"2", "description":"bbb", "name":"yyy", "titel":"nnn"},
{"id":"3", "description":"ccc", "name":"xxx", "titel":"lll"},
{"id":"4", "description":"ddd", "name":"www", "titel":"qqq"},
{"id":"5", "description":"eee", "name":"vvv", "titel":"rrr"}
]
windows.location.href = "searchResults.php?resultArray=" + JSON.stringify(resultArray);
私が使用するphpで:
$resultArray = json_decode($_GET['resultArray']);
echo $resultArray[0]['id']; // should be "1", but show nothing
返信ありがとうございます。