You aren't the only person having this problem! Even I had it when i upgraded. Like the others said, these variables aren't global by default anymore.
There are two things you can do:
1) use the hashes $GET['varname'] and $POST['sds']. This is the best way (both coding wise and security wise)
2) But if you have a lot of programs using the old style (like I do), then turn on register_globals in the php.ini file.
The php.ini file is usually in /usr/local/lib. Copy it to that directory if you did a fresh install from the source distribution.
NOTE: I suggest you don't register_globals unless you want legacy support (that is if you have code using the old format). I read somewhere in the README that they are deprecating the register_globals in upcoming versions of PHP because of some security bug/exploit.
-sridhar