Guest User

Untitled

a guest
May 29th, 2017
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.02 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
  5.     <title>opdracht 5</title>
  6.     <meta name="description" content="leren van php" />
  7.     <meta name="keywords" content="webdesign, php, dbz ,programmeren, komma, spatie, html, xhtml, css, web standards, valid" />
  8.     <meta name="author" content="aymen tijari" />
  9.     <meta name="Revisit-After" content="1 days" />
  10.     <meta http-equiv="Pragma" content="no-cache" />
  11.  
  12.     <meta http-equiv="Cache-Control" content="no-cache, must-revalidate" />
  13.     <meta http-equiv="Expires" content="-1" />
  14.     <link rel="stylesheet" type="text/css" href="style.css">
  15. </head>
  16. <body>
  17.     <h1>opdracht 5</h1>
  18.    
  19.         <?php
  20.         $user = $_POST['user'];
  21.         $pass = $_POST['pass'];
  22.         if ($user == "gebruikersnaam") && ($pass == "wachtwoord") {
  23.             echo "<p> Welkom, ".$user." U bent binnen</p>";
  24.         } else {
  25.             echo "Fout wachtwoord";
  26.         }
  27.         echo"<p><a href=\"index.php\">home</a></p>";
  28.         ?>
  29. </body>
  30. </html>
Add Comment
Please, Sign In to add comment