Source Code:
(back to article)
<?php $query = 'name=John+Doe&age=35&gender=male'; parse_str($query, $output); print_r($output); ?>
Result:
Report an issue