unserialize array in javascript code example
Example: js unserialize
//the GET parameter is the data outputted from jQuery's .serialize() function
$params = array();
parse_str($_GET, $params);
//the GET parameter is the data outputted from jQuery's .serialize() function
$params = array();
parse_str($_GET, $params);