If form was submitted with the following:
<input type='text' name='age' value='20'>
What need to be set in php.ini file to allow you to do
<?php
if($age < 25)
print $age.' is too young';
?>
register_globals
register_globals need to be be to a value of 'on or 1'
register_globals = 1
What is the output of the following?
echo 1 . 2;
echo 1.2;
echo 1 + 2;