<?php $getter = $_GET[getter]; header("location:$getter"); exit; ?> PHP: I'm using this to pass variables from a link. For example: http://www.website.com/?getter=http://www.website.com/place.html And that's ok, but sometimes I want it to pass more variables and I'm not sure if it is or not. Like this: http://www.website.com/?getter=http://www.website.com/place.html/?ss=apple So want it to take everything after ?getter including everything after ?ss. Should it be working ok like it is?