PHP newbie here.
Very simple script:
<?PHP
header("Location: http://mydomain.com/$something");
?>
Basically when the script is called:
something.com/script/script.php?gohere
it will redirect to:
http://mydomain.com/gohere
Now the problem is with spaces, a form will post them as:
something.com/script/script.php?go+here
and I am 100% ok with that, though I need it to keep that so that it redirects like:
http://mydomain.com/go+here
so does anyone know how to "Keep the '+'"