Advertisement
Guest User

index.php

a guest
Jan 16th, 2022
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.63 KB | None | 0 0
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="utf-8">
  5.     <title>My Blog</title>
  6.     <style>
  7.         body { background-image: url("/data/background.gif") }
  8.         .wall_of_text { text-align: center; }
  9.     </style>
  10. </head>
  11. <body>
  12.     <form action="write.php" method="POST">
  13.         <p>Enter shitbost here</p>
  14.         <input type="text" maxlength="400" size="40" name="content">
  15.         <input type="submit" value="Submit">
  16.     </form>
  17.     <p class="wall_of_text">
  18.         <?php
  19.            echo nl2br(file_get_contents("content.txt"));
  20.        ?>
  21.     </p>
  22.     <img src="/data/gentoo.png" alt=">2016">
  23. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement