Guest User

Untitled

a guest
Oct 22nd, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.48 KB | None | 0 0
  1. <!-- index.html -->
  2. <html>
  3. <head>
  4.     <title></title>
  5. </head>
  6. <body>
  7.  
  8. <div id="mamma">hej hopp</div>
  9. <form>
  10.     <input type="text">
  11.     <input type="submit">
  12. </form>
  13.  
  14. </body>
  15. </html>
  16.  
  17. <!-- ----------------- SAMMA SAK: ----------------- -->
  18.  
  19. <!-- index.php -->
  20. <html>
  21. <head>
  22.     <title></title>
  23. </head>
  24. <body>
  25.  
  26. <?php include("content.php");
  27.  
  28. </body>
  29. </html>
  30.  
  31.  
  32. <!-- content.php -->
  33. <div id="mamma">hej hopp</div>
  34. <form>
  35.     <input type="text">
  36.     <input type="submit">
  37. </form>
Add Comment
Please, Sign In to add comment