If you are trying to pass variables form one page to another using links or forms, you need to use: $GET or $POST, assuming that REGISTER GLOBALS is off.
On the same page you do not need to use that.
So:
$var1 = "Dylan";
print($var1);
will print:
Dylan
But if I wanted to pass that to another page in a URL, like this:
http://www.somesite.com/page.php?name=Dylan
and I wanted to use it, I would need to do this:
$name = $_GET['name'];
Help?
-- Jason