Advertisement
Guest User

Untitled

a guest
Sep 20th, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.35 KB | None | 0 0
  1. <?php
  2. if(isset($_POST['submitted'])){
  3.     echo $_POST['username'];
  4. }
  5. ?>
  6.  
  7.  
  8. <html>
  9.  
  10.       <form action="index.php" methood="POST">
  11.             Username: <input type='text' name='username'/><br/>
  12.             Password: <input type='password' name='password'/><br/>
  13.             <input type='submit' name="submitted" value='Log In'/>
  14.       </form>
  15.  
  16. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement