How can I convert a javascript array to a php array??
I have a javascript array which I want to put the values into a php array please help me?
How would I go about doing this?
You would typically convert the array to a JSON string with JSON.stringify, then make an AJAX request to the server, receive the string parameter and json_decode it to get back an array in the PHP side.
JSON.stringify
json_decode
2.1m questions
2.1m answers
60 comments
57.0k users