Menu

ARGH

Help
2007-03-07
2013-06-03
  • So confused

    So confused - 2007-03-07

    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

     
    • TNTEverett

      TNTEverett - 2007-03-07

      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. 

       
    • So confused

      So confused - 2007-03-07

      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

       
      • TNTEverett

        TNTEverett - 2007-03-07

        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. 

         

Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.