Hello I know all about http://www.php.net/manual/en/function.http-build-query.php to do this however I have a little problem.
It \"handly\" turns boolean values into
Loop through each variable of the query string ($qs) and if bool true or false, then change value to string.
foreach($qs as $key=>$q) { if($q === true) $qs[$key] = 'true'; elseif($q === false) $qs[$key] = 'false'; }
Then you can use the http_build_query()
http_build_query()