<?php
include('includes/header.php');
// code
error_reporting(E_ALL); // set error reporting to all
echo('<h1>Introduction</h1>');
echo('<h2>Insert words to introduce yourself!</h2>');
// Note the variables being passed via the GET ternary operators.
$step = isset($_GET['step']) ? $_GET['step'] : 0;
$name = isset($_GET['name']) ? $_GET['name'] : '';
$age = isset($_GET['age']) ? $_GET['age'] : '';
$school = isset($_GET['school']) ? $_GET['school'] : '';
$year = isset($_GET['year']) ? $_GET['year'] : '';
$major = isset($_GET['major']) ? $_GET['major'] : '';
$grad_date = isset($_GET['grad_date']) ? $_GET['grad_date'] : '';
// filter all input taken from the Browser
$step = htmlentities($step);
$name = htmlentities($name);
$age = htmlentities($age);
$school = htmlentities($school);
$year = htmlentities($year);
$major = htmlentities($major);
$grad_date = htmlentities($grad_date);
if ($step == 0) // first time into this form
{
?>
<form action="intro.php" method="GET" class="pad">
<label for="name">Name</label>
<input type="text" size="36" id="name" name="name" value="">
<br><br>
<label for="age">Age</label>
<input type="number" size="36" id="age" name="age" value="">
<br><br>
<label for="school">School</label>
<input type="text" size="36" id="school" name="school" value="">
<br><br>
<label for="major">Major</label>
<input type="text" size="36" id="major" name="major" value="">
<br><br>
<label for="grad_date">Graduation Year</label>
<input type="text" size="36" id="grad_date" name="grad_date" value="">
<br><br>
<label for="year">School Year</label>
<input type="text" size="36" id="year" name="year" value="">
<br><br>
<input type="hidden" name="step" value="1">
<input type="submit" name="submit" value="Submit">
<br><br>
</form>
<?php
} else // story
{
$inputs = $name . $age . $school . $year. $major . $grad_date;
$count = strlen($inputs);
$story = "Hi! My name is $name. I am $age years old and I am attending $school. I am in my $year year. I am majoring
in $major and I am scheduled to graduate in $grad_date. Nice to meet you!";
echo($story);
}
// provide a form to try again
if (!$step == 0){
?>
<form action="intro.php" method="GET">
<input type="hidden" name="step" value="0">
<input type="submit" name="submit" value="Try Again">
</form>
<?php
}
include('includes/footer.php');
?>