session_id() = 20db42ec98f71331faf798637149b9ec
session_id() = 20db42ec98f71331faf798637149b9ec
<?php
session_name("flounoro");
session_start();
include('includes/header.php');
error_reporting(E_ALL);
$app = isset($_SESSION['app']) ? $_SESSION['app'] : [
'name' => '',
'email' => '',
'school' => '',
'company' => '',
'years' => ''
];
?>
<form action="job-application-pg2.php" method="post">
<h1>Orlando's Job Application</h1>
<p>Note for user: Your information will automatically save and remain until submit your application.</p>
<label>Name</label>
<input type="text" name="name" value="<?= htmlspecialchars($app['name']) ?>"><br><br>
<label>Email</label>
<input type="email" name="email" value="<?= htmlspecialchars($app['email']) ?>"><br><br>
<label>School</label>
<input type="text" name="school" value="<?= htmlspecialchars($app['school']) ?>"><br><br>
<label>Last Company</label>
<input type="text" name="company" value="<?= htmlspecialchars($app['company']) ?>"><br><br>
<label>Years of Experience</label>
<input type="number" name="years" value="<?= htmlspecialchars($app['years']) ?>"><br><br>
<button type="submit">Review Application</button>
</form>
<?php
echo('<p>session_id() = ' . session_id() . '</p>');
include('includes/footer.php');
?>