noordean

reply_html.php

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