can anyone give me some info on how i should make a forms page
can anyone give me some info on how i should make a forms page
You should also specify what will be the goal of the form.
█ Xavier L | Community Public Relations Manager (Free Hosting Support)
█ Yes, my position is too cool to even exist!
█ How am I helping? Rate this post by clicking theicon below! (this is even better than "liking" a post)
█ Terms of Service | Acceptable Use Policy | x10Hosting Wiki
A form will normall have three parts.
the form itself..
<form name="form" action="" method="post">
</form>
An input
<input name="input1" type="text" />
.. and a button to submit the info..
<input type="submit" name="Submit" value="Submit" />
What you do with this information is entirely up to you. You could post it to the same page, or to another one that processes the information.
As said above, it depends on what you want to achieve.
Last edited by freecrm; 05-12-2009 at 06:48 AM.