When you make an Xhtml form and someone submits it where do you view the submitted form? Thanks for answering!
The information is sent to the script on the server that processes the submitted data.
Sometimes, the processing script is in the same page, and sometimes it is on another page.
You can look at the source of the page and see where the form is submitting to. Look for something like:
<form method="post" action="somepage.php"> and the action attribute will give you the information.
It all depends on how the author set it up.