Greetings.
This simple HTML link :
<a href="form.php?user=ftrudeau">Some link</a>
on a PHP script that tries to echo the variable $user, well, echos nothing ... Any clue ?
This works out of the box with same version of PHP + Apache
You might check your register_globals setting in the php.ini file. Im also assuming that you have the cgiforce_redirect set to 0.
i fixed the problem by activation register_globals. thanks.