Last active
November 18, 2015 06:03
-
-
Save smamran/e63ddeef6c7b74275be7 to your computer and use it in GitHub Desktop.
PHP Codes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <form method="POST" action=""> | |
| <p>Name: </p> | |
| <input type="text" name="name" value="<?php if (isset($_POST['name'])) { | |
| echo htmlentities($_POST['name']); | |
| } ?>"/> <br/> | |
| <input type="submit"> | |
| </form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment