Functions Php



Using http_build_query() to Build Query Strings


$q = array (
    'name' => "Tom",
    'interest' => "Movie",
    'homepage' => "http://www.example.com"
    );
$query = http_build_query( $q );
print $query;
?>


">Go!