Skip to content

Instantly share code, notes, and snippets.

@uppfinnarjohnny
Created January 21, 2010 19:04
Show Gist options
  • Save uppfinnarjohnny/283084 to your computer and use it in GitHub Desktop.
Save uppfinnarjohnny/283084 to your computer and use it in GitHub Desktop.
mod_querystring()
<?php
function mod_querystring($name, $value = NULL) {
$vars = $_GET;
$vars[$name] = $value;
return http_build_query($name);
}
print http_build_query(array('hej'=>'tjo', 'hepp'=>'happ','haha' => NULL));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment