Using $('#form').serialize(), I was able to send this over to a PHP page. Now how do I unserialize it in PHP? It was serialized in jQuery.
|
|
|||||
|
|
You shouldn't have to unserialize anything in PHP from the jquery serialize method. If you serialize the data, it should be sent to PHP as query parameters if you are using a GET method ajax request or post vars if you are using a POST ajax request. So in PHP, you would access values like $_POST["varname"] or $_GET["varname"] depending on the request type. The serialize method just takes the form elements and puts them in string form. "varname=val&var2=val2" |
|||
|
|
|
Provided that your server is receiving a string that looks something like this (which it should if you're using jQuery serialize()`):
...something like this is probably all you need:
See the following for more information: http://www.php.net/manual/en/function.parse-str.php Hope that's helpful. Good luck! |
|||||||||||||||
|
|
// jQuery Post
// jquery.post serialized var - TO - PHP Array format
// You get any same of that
|
||||
|
|
|
I don't know which version of Jquery you are using, but this works for me in jquery 1.3:
Then you can access POST array keys as you would normally do in php.
Just try with a I think you're wrapping serialized form value in an object's property, which is useless as far as i know. Hope this helps! |
|||
|
|
|
This is in reply to user1256561. Thanks for your idea.. however i have not taken care of the url decode stuff mentioned in step3. so here is the php code that will decode the serialized form data, if anyone else needs it. By the way, use this code at your own discretion.
The url post data input will be like: attribute1=value1&attribute2=value2&attribute3=value3 and so on Output of above code will still be in an array and you can modify it to get it assigned to any variable you want and it depends on how you want to use this data further.
|
||||
|
|
|
I think you need to separate the form names from its values, one method to do this is to explode My point here is that you will convert the serialized jQuery string into arrays in PHP. Here is the steps that you should follow to be more specific.
Let me know if you need more clarifications. |
||||
|
|
|
Why don't use associative array, so you can use it easily
Regards |
|||
|
|