WordPress serialized data to array

It took me about 3 hours of development time for solving the issue this little magical snippet solved.
For all of you who are fighting with parsing javascript serialized data to proper PHP Array, this is the snippet you need in order to get


//Define a simple PHP Array

$data = array();

// whirl up $_POST to PHP array the propper way
parse_str($_POST, $data);