I think it's because register_globals went from on to off in your new PHP version. This is explained here:
http://de3.php.net/manual/en/languag...predefined.php
So you have to change your scripts (e.g. use $_POST['id'] instead of $id) or change register_globals to on in your php.ini (don't forget to restart Apache then).