Hi,
I know back in php3 whenever you had a page look something like blah.php?id=1 , php would automatically create the variable $id for you, or if you had blah2.php?id=2&stuff=w00t, php would automatically create $id and $stuff for you. With this, you could check the values of these variables and whatnot. Did this change with php4? I'm trying to do some things relating to this, and it seems php4 no longer automatically defines $id...? I tried searching google for a while, but I don't really know what you'd call this, so I didn't find much. If someone could please tell me how to get this to work in php4 I'd greatly appreciate it. Thanks!