Skip to content

Instantly share code, notes, and snippets.

@Committing
Last active November 6, 2017 21:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Committing/ae7f0ecac307c7f8453704edc5b6e79a to your computer and use it in GitHub Desktop.
Save Committing/ae7f0ecac307c7f8453704edc5b6e79a to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>Richard's Form Results</title>
<link rel="stylesheet" href="format.css" />
</head>
<body>
<p>The caller's name <?php echo (isset($_GET['empname']) ? htmlentities($_GET['empname']) : '[Not Found]');?> </p>
<p>The caller's employee ID <?php echo (isset($_GET['empid']) ? htmlentities($_GET['empid']) : '[Not Found]');?></p>
<p>What is the problem with the item <?php echo (isset($_GET['problem']) ? htmlentities($_GET['problem']) : '[Not Found]');?></p>
<p>What item are they calling about <?php echo (isset($_GET['item']) ? htmlentities($_GET['item']) : '[Not Found]');?></p>
<p>What is the serial number of the item. <?php echo (isset($_GET['serial']) ? htmlentities($_GET['serial']) : '[Not Found]');?></p>
<p>What is your helpdesk ID? <?php echo (isset($_GET['helpid']) ? htmlentities($_GET['helpid']) : '[Not Found]');?></p>
<p>How severe is the issue? <?php echo (isset($_GET['severe']) ? htmlentities($_GET['severe']) : '[Not Found]');?></p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment