Oh, you're using php3. That's the problem. Here's how to adapt the script for php3:
Change all occurences of
$GET['something'] or $POST['somthing']
to simply
$somthing
For example, change $_POST['data'] to $data on line 2.
After you make all those changes, see if it works.