Guest User

Untitled

a guest
Jul 12th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. <html>
  2. <head>
  3. <Title>My first PHP program</title>
  4.  
  5. <link rel="stylesheet" type="text/css"
  6. href="new2css.css" />
  7.  
  8. </head>
  9.  
  10. <body>
  11. <table border="0" cellpadding="0" width="100%"; class="pagetable">
  12. <tr><td class="heading">
  13. <h1 class="heading"><?php
  14. print("Hello Cruel World<br/><br/>\n")
  15. ?>
  16. <?php $id = 1; ?></h1>
  17. </td></tr>
  18.  
  19.  
  20. <tr><td class="infoform">
  21.  
  22. <form method="post" action="registration.php">
  23. <p>First Name:
  24. <input type="text" name="firstname" size="20">
  25. <p>Last Name:
  26. <input type="text" name="lastname" size="20">
  27. <p>Rank:
  28. <input type="text" name="rank" size="10">
  29. <input type="hidden" name="serial number" value=<?php echo $id; ?>">
  30.  
  31. <input type="submit" value="Input">
  32.  
  33. </form>
  34.  
  35. </td></tr>
  36.  
  37. </body>
  38. </html>
Add Comment
Please, Sign In to add comment