Scenario: User posts information to a page from a web form.
USER A
//remember, a form POSTed information here
echo 'User is '.$user;
USER B
$user = $_POST['user'];
echo 'User is '.$user;
Question 1: If register_globals is turned 'off', will USER A display the $user ?
Question 2: If register_globals is turned 'on', will both users display $user ?
Thanks. 🙂