|
Hi guys.
I need some help with a client of mines website.
Basically, the front page has a simple form that captures (name, email, and tel etc), and the price of their home.
On the second page, the information from the first page is stored on a Mysql database, and the customer is given an offer for their home.
They are presented with another form that asks if they accept the offer or not.
This then updates the Mysql database if they click 'yes' 'no' or 'maybe'.
The problem I am having is the client has now introduced a third party into the equation.
As well as the system I have developed, they also want the information, including the second set of information to be submitted via an iframe to another company.
At the moment I have created a third page, which asks the user to confirm their information.
Obviously this is not ideal, as not every customer is not going to resubmit their details.
Is there anyway I can build a timer of some sort into my database that waits 10 mins or so to see if the customer clicks 'yes' 'no' 'maybe', and then submits it to the other companies database?
The code they have given me looks like this:-
CustomEnquiry.aspx?NM=<? echo $name; ?>&EM=<? echo $email; ?>&PH=<? echo $tel; ?>&PC=<? echo $postcode; ?>&VL=<? echo $propvalue2; ?>&BMV=<? echo $bmvpercentage; ?>&OF=<? echo $acceptbmv; ?>
the echo $'s, are my variables, but they need all of this info sent across.
Hope someone can help.
|