Handling Special Characters : Form Data « Form « PHP






Handling Special Characters

 
<html>
<body>
    <?php
      if ($_POST['submitted'] == "yes"){
        $yourname = $_POST['yourname'];

        $yourname = trim ($yourname);

        $yourname = strip_tags ($yourname);

        $yourname = htmlspecialchars ($yourname);

        $yourname = addslashes ($yourname);
        
        echo $yourname . "<br />";
        ?><a href="index.php">Try Again</a><?php
      }
      if ($_POST['submitted'] != "yes"){
        ?>
        <form action="index.php" method="post">
          <p>Example:</p>
          <input type="hidden" name="submitted" value="yes" />
          Your Name: <input type="text" name="yourname" maxlength="150" /><br />
          <input type="submit" value="Submit" style="margin-top: 10px;" />
        </form>
        <?php
      }
    ?>
  </div>
</body>
</html>
  
  








Related examples in the same category

1.Deal with Array Form Data
2.A process_form() Function
3.Access widget's form value
4.Accessing multiple submitted values
5.Calculation based on form data
6.Forms and PHP
7.Feedback Form
8.multivalue-forms.php
9.Saying "Hello"