Is register_globals set to ON in php.ini?
If not, use this to access myvariable:
echo $_GET['myvariable'];
if you are POSTing a form, use:
echo $_POST['myvariable'];
In php 4.2.0+, register_globals is by default Off because it is not safe/secure to use.
-sridhar