If you're using PHP 4.2+ you either need to alter the php.ini to have global variables enabled, or you need to change your PHP scripts around to initially grab the variables
In regards to your example
http://www.bla.com/bla.php?var=hello
the line
$var = $_GET["var"];
would give the variable $var the value of hello.