Advertisement
Guest User

Untitled

a guest
Aug 8th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. <?php
  2.  
  3. // error #1 below
  4. if (isset($_POST['submit'])) {
  5. echo "HTML FORM";
  6. } else {
  7.  
  8. // error #2, #3 below
  9. $username = $_POST['"username"];
  10. $password = $_POST["password"];
  11. $code = $_GET['code'];
  12.  
  13. // errors below. (3)
  14. $status = $mssg[0] .. " " . $mssg[1] . " " . $mssg[2]
  15. echo $status . "<br />";
  16. echo $mssg[$rand];
  17.  
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement