dragOn was right - you still have $_GET available whether register_globals is on or off. And Panoz, didn't I help you with a textarea problem earlier? so drop the attitude, dude 😃
Jimbo - put a page up containing the following code
<?PHP
phpinfo();
?>
call it phpinfo.php and then load it up using the url phpinfo.php?test=working
Scroll down to the 'php variables table', and in the left hand column you should have a _SERVER["QUERY_STRING"] entry. The value in the right hand column should read test=working.
A bit further up, you should have a _GET['test'] entry in the left hand column. This should say 'working'
If these are working, then we can be fairly sure it's your script thats causing probs. If so, post some (relevant) code.
adam