<!DOCTYPE html>
<html  xmlns="http://www.w3.org/1999/xhtml">

<!--
    demo of clicker question 2 - response

    by: Sharon Tuttle
    last modified: 2016-03-02
-->

<head>
    <title>  clicker question demo - response </title>
    <meta charset="utf-8" />

    <link href="http://users.humboldt.edu/smtuttle/styles/normalize.css"
          type="text/css" rel="stylesheet" />
</head>

<body>
    <h1> clicker question demo - response </h1>

    <p> from the form, sanitized with
        strip_tags: <?= strip_tags($_POST["burp"]) ?> </p>

    <p> from the form, sanitized with
        htmlspecialchars: 
        <?= htmlspecialchars($_POST["burp"]) ?> </p>

    <p> from the form, sanitized with
        htmlentities: 
        <?= htmlentities($_POST["burp"]) ?> </p>

<?php
    require_once("328footer.txt");
?>