|
|
|||||||||
|
|||||||||
|
|||||||||
| |
||
| ||||||||||||||||||||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
Guestbook Help
I am trying to create a guestbook where people submit their NAME, EMAIL, and COMMENTS. Upon submit, their comment, name, and the current date are posted in a section underneath the form. When the next person comes to the site, they can see the previous posted message and if they input their own comments, upon submit, their comments with name and date will be posted above the previous comment.
What I have thus far is the following: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "URL"> <html xmlns="URL"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Guestbook</title> <script type="text/javascript"> function submitForm() { name = document.theform.username; email = document.theform.useremail; comm = document.theform.comment; html = "<p>"; html += name + "<br>"; html += comm + "<br>"; html += (new Date()) + "<br>"; html += "</p>"; alt = document.getElementById("comm").innerHTML; document.getElementById("comm").innerHTML = html + alt; return; } </script> <FORM id="theform" METHOD="POST" ACTION="Guestbook.htm" onsubmit="return submitForm();"> <B>Name:</B> <INPUT NAME="username" size="30"> <BR> <B>E-mail Address: </B> <INPUT Name="usermail" size="30"> <h4>Make any comments you'd like below:</h4> <LEFT> <h5> <TEXTAREA NAME="comment" ROWS=6 COLS=60></TEXTAREA> </h5> <P> <INPUT TYPE=submit VALUE="Send it!"> <INPUT TYPE=reset VALUE="Reset"> </CENTER> </FORM> <p> </p> <p> </p> <div id="comm"></div> </body> </html> I thought this would work but it is not. I am not very fluent in HTML and did most of this by searching the internet. If anyone can help me get this to work, I would really appreciate it Thank you |
|
#2
|
|||
|
|||
|
Next person? From another comupter or browser? I think it's not possible..
|
|
#3
|
|||
|
|||
|
:--)
URL
|
![]() |
| Viewing: SEO Chat Forums > Other > HTML Coding > Guestbook Help |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|