Jump to content

Recommended Posts

Hi Everyone,

 

I would appreciate some help with a form that I am trying to get working. I am in now way a programmer so any help from you guys who are programmers would be appreciated.

 

I copied and pasted the fields and code into a page I created. The form if from an existing site of my customers. I then created this:

 

    http://www.faithfulandtruecarolinas.com/contact_working.shtml (It was actually contact.shtml prior to my problems)

 

This form was then handed off to a coder to build the form:  http://www.faithfulandtruecarolinas.com/contactformprocess.php which processes the form information and emails the results in a readable format.

 

After he built contactformprocess.php and put everything into place everything looked good. Only one thing didn't work on the form and it was when you would tab between the email field and the confirm email field. You would get an error. The form information processed fine and was emailed to me fine.

 

Well I decided to look at the validation of the page and MAN!, almost every line had an error. Guess what?...I was pretty much sunk trying to figure it all out.

 

I decided to try and build another form coding the fields with the same name and cutting and pasting the "coders" code into the page piece by piece.

 

Well when I test the new form http://www.faithfulandtruecarolinas.com/contact.shtml it to forward me to the contactformprocess.php page. It is suppose to redirect to thanks.shtml. I can't get the form information to process.

 

Can someone give me some pointers??

 

Any help would be appreciated.

 

Scott

Link to comment
https://forums.phpfreaks.com/topic/137770-php-form-process-problem-help/
Share on other sites

you forgot the onblur javascript events

 

change:

<tr>
            <td><input name="your_name" type="text" id="your_name" size="30" /></td>
          </tr>
          <tr>
            <td>Company Name</td>

          </tr>
          <tr>
            <td><label>
              <input name="company_name" type="text" id="company_name" size="30" />
            </label></td>
          </tr>
          <tr>
            <td>Phone</td>

          </tr>
          <tr>
            <td><label>
              <input name="phone" type="text" id="phone" size="30" />
            </label></td>
          </tr>
          <tr>
            <td>Email</td>

          </tr>
          <tr>
            <td><label>
              <input name="email" type="text" id="email" size="30" />
            (REQUIRED)</label></td>
          </tr>
          <tr>
            <td>Confirm Email</td>

          </tr>
          <tr>
            <td><label>
              <input name="emailconfirm" type="text" id="emailconfirm" size="30" />
            </label></td>
          </tr>
          <tr>
            <td height="48" valign="bottom">Comments</td>

          </tr>
          <tr>
            <td><label>
              <textarea name="comments" id="comments" cols="35" rows="6"></textarea>
              <br />
            </label></td>
          </tr>

 

to

 

<tr>
            <td><input name="your_name" type="text" id="your_name" size="30" /></td>
          </tr>
          <tr>
            <td>Company Name</td>

          </tr>
          <tr>
            <td><label>
              <input name="company_name" type="text" id="company_name" size="30" />
            </label></td>
          </tr>
          <tr>
            <td>Phone</td>

          </tr>
          <tr>
            <td><label>
              <input name="phone" type="text" id="phone" onblur="MM_validateForm('phone','','NisNum');return document.MM_returnValue" size="30" />
            </label></td>
          </tr>
          <tr>
            <td>Email</td>

          </tr>
          <tr>
            <td><label>
              <input name="email" type="text" id="email" size="30" onblur="MM_validateForm('email','','RisEmail');return document.MM_returnValue" />
            (REQUIRED)</label></td>
          </tr>
          <tr>
            <td>Confirm Email</td>

          </tr>
          <tr>
            <td><label>
              <input name="emailconfirm" type="text" id="emailconfirm" size="30" onblur="MM_validateForm('emailconfirm','','NisEmail');return document.MM_returnValue" />
            </label></td>
          </tr>
          <tr>
            <td height="48" valign="bottom">Comments</td>

          </tr>
          <tr>
            <td><label>
              <textarea name="comments" id="comments" cols="35" rows="6"></textarea>
              <br />
            </label></td>
          </tr>

 

:)

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.