1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 3. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> 4. <head> 5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> 6. <title>Forum Posting</title> 7. </head> 8. <body> 9. <!-- Script 5.1 - posting.html --> 10. <div><p>Please complete this form to submit your posting:</p> 11. 12. <form action="handle_post.php" method="post"> 13. 14. <p>First Name: <input type="text" name="first_name" size="20" /></p> 15. 16. <p>Last Name: <input type="text" name="last_name" size="20" /></p> 17. 18. <p>Email Address: <input type="text" name="email" size="30" /></p> 19. 20. <p>Posting: <textarea name="posting" rows="9" cols="30"></textarea></p> 21. 22. <input type="submit" name="submit" value="Send My Posting" /> 23. 24. </form> 25. </div> 26. </body> 27. </html>