Guest User

Untitled

a guest
Jul 21st, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. <?php
  2. $title = "Message Board"; // Page title;
  3. ?>
  4. <html>
  5.  
  6. <head>
  7. <title>
  8. <?php echo $title; ?></title>
  9. <meta http-equiv="content-type" content="text/html;charset=utf-8" />
  10. <meta name="generator" content="Geany 0.19.1" />
  11. <style type = "text/css">
  12. html,body {
  13. background: #66CCFF;
  14. margin-right:8px;
  15. margin-left: 8px;
  16. margin-top: 8px;
  17. font-family: Arial, Sans-serif;
  18. word-wrap: break-word;
  19. }
  20. div.answer {
  21. border-color:#000000;
  22. border: 1px solid black;
  23. width:560px;
  24. background-color: #3399CC;
  25. }
  26. </style>
  27. </head>
  28.  
  29. <body>
  30. <!-- Форма ответа -->
  31. <?php require("msg_form.php"); ?>
  32. <p>
  33. <!-- Сообщения -->
  34. <?php require("msg_board"); ?>
  35. <p>.(made by M87Dev)</p>
  36. </body>
  37.  
  38. </html>
Add Comment
Please, Sign In to add comment