Advertisement
noordean

post_html.php

Sep 29th, 2016
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.55 KB | None | 0 0
  1. <?php
  2. require_once('post.php');
  3. ?>
  4. <!DOCTYPE html>
  5. <html>
  6. <head>
  7.     <title>Simple Forum</title>
  8. </head>
  9. <body>
  10.     <form action=<?php echo "post_html.php?section=".$_GET['section'] ;?> method="post">
  11.         <table>
  12.             <tr>
  13.                 <td>Topic</td>
  14.                 <td><input type="text" name="topic"/></td>
  15.             </tr>
  16.             <tr>
  17.                 <td>Message</td>
  18.                 <td><textarea name='message' style="resize:none" rows="15" cols="12"></textarea></td>
  19.             </tr>
  20.             <tr>
  21.                 <td><input type="submit" name="submit" value="Create"></td>
  22.             </tr>
  23.         </table>
  24.     </form>
  25.  
  26. </body>
  27. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement