You are here: C97net • 5.04 HTML Functions
Convert URL query to an array
function url_query_to_array ($query)
This function will convert url query to an array.
$query = the query string.
Example 1
<?php
require './includes/user_init.php';
$q = $_SERVER["QUERY_STRING"];
print_r (url_query_to_array ($q));
?>
If you call the script with a query, eg: test.php?a=1&b=2&p=1, it will produce an array ('a' => 1, 'b' => 2, 'p' => 1).
There is no comment. Why not be the first?