Hello,
Let me be the first to tell you that all this coding stuff is way beyound me. (I hope it changes)
Anyway I made a form and when I hit submit it does nothing.
Please help!!!
Thanks
I think you have split important parts of your form from the original form1.html file.
Look at the original file. You will see that the lines like this one
<input type="text" size="25" value="" name="ConfirmEmailAddress">
are between the
<form action="process.php" method="post" enctype="multipart/form-data">
and
</form>
You have put the inputs outside of your <form> </form> tags.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Everett,
Thanks for your message. I just deleted that form and did a new one called Contact Form and loaded it.
Still the same thing is happening.
I'm just clueless.
Sorry to be a bother. I know this can't be much I am making it harder then it is I am sure.
Thanks for your help!
Similar comment. You are so badly cutting up the original form1.html code that it can not work. Open the file in the link you sent me. Where is the beginning of the form?
<form action="process.php" method="post" enctype="multipart/form-data">
It's missing!
All the form elements must fall between the two tag lines;
<form action="process.php" method="post" enctype="multipart/form-data">
..
..
... form stuff, input, submit, reset, etc...
..
..
</form>
This is basic HTML, not PHP coding.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hello,
Let me be the first to tell you that all this coding stuff is way beyound me. (I hope it changes)
Anyway I made a form and when I hit submit it does nothing.
Please help!!!
Thanks
SO CONFUSED
http://www.madamlynn.com/contact.html
I think you have split important parts of your form from the original form1.html file.
Look at the original file. You will see that the lines like this one
<input type="text" size="25" value="" name="ConfirmEmailAddress">
are between the
<form action="process.php" method="post" enctype="multipart/form-data">
and
</form>
You have put the inputs outside of your <form> </form> tags.
Everett,
Thanks for your message. I just deleted that form and did a new one called Contact Form and loaded it.
Still the same thing is happening.
I'm just clueless.
Sorry to be a bother. I know this can't be much I am making it harder then it is I am sure.
Thanks for your help!
http://www.madamlynn.com/contact.html
Similar comment. You are so badly cutting up the original form1.html code that it can not work. Open the file in the link you sent me. Where is the beginning of the form?
<form action="process.php" method="post" enctype="multipart/form-data">
It's missing!
All the form elements must fall between the two tag lines;
<form action="process.php" method="post" enctype="multipart/form-data">
..
..
... form stuff, input, submit, reset, etc...
..
..
</form>
This is basic HTML, not PHP coding.