Era cantado q tenia q poner la funcion q dormida estoy !
Código PHP:
function makeUrl($file, $get = array())
{
foreach($_GET as $key => $id)
{
$getresponse[$key] = $id;
}
foreach($get as $key => $id)
{
$getresponse[$key] = $id;
}
$querystring = "";
$querystring = http_build_query($getresponse);
if($querystring!="")
$file .= '?' . $querystring;
return $file;
}