<form method="POST"

action="https://www.thewiseagent.com:443/secure/webcontactAllFields.asp"

name="myForm" onSubmit="return chkForm(this);">

<!-- Do not change -->

    <input type="hidden" name="ID" value="67,176,210,31,93,194,29,70,235">

<!-- These fields can be edited -->

    <input type="hidden" name="responsePage"

value="http://http://www.expertforyou.com/">

    <input type="hidden" name="Source" value="website referral">

    <input type="hidden" name="Categories" value=""><!-- semicolon;delimited

no spaces -->

    <input type="hidden" name="currentUser" value=""><!-- internal team member -->

    <input type="hidden" name="ProgramID" value="">

    <input type="hidden" name="noMail" value="0"><!-- 0/1 if set to 1, no

reply to the visitor is sent. -->

    <input type="hidden" name="replyMessage" value="">

    <input type="hidden" name="replySubject" value="">

    <input type="hidden" name="notifySubject" value="">

    <input type="hidden" name="notifyCc" value=""><!-- comma, delimited -->

    <input type="hidden" name="notifyBcc" value=""><!-- comma, delimited -->

<!-- These address fields are optional -->

    <input type="hidden" name="address" value="">

    <input type="hidden" name="city" value="">

    <input type="hidden" name="state" value="">

    <input type="hidden" name="zip" value="">

<!-- For any additional fields, add the field names separated by a comma to

the CommaDelimitedFormFields value. These fields will be saved in the extra

notes section -->

    <input type="hidden" name="CommaDelimitedFormFields" value="">

    <script language=javascript>

<!--



function chkForm(theForm) {

      if(theForm.CFirst.value=="") {

            alert("Please fill in your first name.");

            theForm.CFirst.focus();

            return false;

      }

      if(theForm.CLast.value=="") {

            alert("Please fill in your last name.");

            theForm.CLast.focus();

            return false;

      }

      var email = theForm.CEmail.value;

      if(email.indexOf("@")<1){

            alert("Please fill in your email address \n so I may contact you.");

            theForm.CEmail.focus();

            return false;

      }

      if(document.all) {

            if(theForm.Message.innerText=="") {

                  alert("Please type a message.");

                  theForm.Message.focus();

                  return false;

            }

      } else {

            if(theForm.Message.value=="") {

                  alert("Please type a message.");

                  theForm.Message.focus();

                  return false;

            }

      }

return true;

}

-->

</script>

    <tr>

      <td align="right"> First Name</td>

      <td>

          <input type="text" name="CFirst" size="30" class="CFirst">

        <font size="1">*</font></td>

    </tr>

    <tr>

      <td align="right"> Last Name</td>

      <td>

        <input type="text" name="CLast" size="30" class="CLast">

        <font size="1">*</font></td>

    </tr>

    <tr>

      <td align="right"> Phone</td>

      <td>

        <input type="text" name="Phone" size="30" class="Phone">

      </td>

    </tr>

    <tr>

      <td align="right"> Fax</td>

      <td align="left">

        <input type="text" name="Fax" size="30" class="Fax">

      </td>

    </tr>

    <tr>

      <td align="right"> Email</td>

      <td>

        <input type="text" name="CEmail" size="30" class="CEmail">

        <font size="1">*</font> </td>

    </tr>

    <tr>

      <td align="right" valign="top"> Message</td>

      <td valign="top">

        <textarea rows="8" name="Message" id="Message" cols="40"></textarea>

    <tr>

      <td> </td>

      <td align="left" valign="top">
     <?php    if ( function_exists('wp_nonce_field') )
            wp_nonce_field('submit_form', 'submit_form');

        ?>

        <input type="submit" name="Submit" value="Send" id="submit">

      </td>

    </tr>

  </form>

above form saves data into external server. but now i need to save that into my server as well.

Thanks
Navi

Recommended Answers

All 5 Replies

I don't think that you can initiate it from the user end with HTML (without two forms). You might be able to do it with Ajax. You could possibly transfer it from the prime (external) server to your server after it is received on the prime server.

Why don't you submit your form to your own website first where you can automatically pass the values to another server?

Web Service is also a solution. But if you have a remote MySql connection in one server, and you trust your servers, you could do it this way too. (Of course I agree with all the others solutions that mentioned).

Hi

Its possible when you submit the form the page is redirected to another page in that page you have to write the code to store the date to server1 and after that redirect to another page with the values in which server connection to server2 is written

this will work just try it

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.