Advertisement
Guest User

Untitled

a guest
Apr 24th, 2014
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.74 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="nl">
  3.     <head>
  4.         <title>XXL Computer winkel</title>
  5.     </head>
  6.    
  7.     <body>
  8.         <h3>PHP lab 12</h3>
  9.         <table border="0" celpadding="0" cellspacing="0">
  10.             <form name="orderform" action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post">
  11.                 <tr>
  12.                     <td>Gebruikersnaam</td>
  13.                     <td><input type="text" name="user" /></td>
  14.                     <td><input type="button" name="send" value="inloggen" />
  15.                     </td>
  16.                    
  17.                 </tr>
  18.             </form>
  19.         </table>
  20.         <?php
  21.        
  22.         include("cookiefuncties.php");
  23.         welkom(@$_POST['user']);
  24.         ?>
  25.     </body>
  26. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement