The following was created by PHP:
';
//var_dump($_POST);
//var_dump($_SERVER);
echo '';
$submit = $_POST['submit'];
if ($submit == 'Submit'){
echo 'Welcome, '.$_POST['fullname'].'
';
echo 'Your email is '.$_POST['email'];
}
/*
$first = 1;
$second = '1';
echo $first + $second;
echo "first is ".$first;
$test = ' PHP is cool';
print 'Hello, world!'. $test.'';
*/
?>