Prepop CPA offer form

beaburt

Newbie
Joined
Jan 17, 2011
Messages
3
Reaction score
0
How can I prepop a CPA offer form with like 7 feilds and then email that populated form to my customer to review and then submit from their unique IP address? I work with a call center and most customers will not fill out the form themselves but would be happy to click submit if it was emailed to them completed.
 
what kind of call center. You can code this using html link, and passing the parm values to the form.
 
what kind of call center. You can code this using html link, and passing the parm values to the form.

What kind of html link, can you give me more info please. My call center is an outbound call center located in USA and India.
 
Whatever way you do this it will still look like a bot generated lead to the advertiser. To prepoluate a form you need your client info which i doubt that you have all of the needed 7 fields to make the lead..
 
What kind of html link, can you give me more info please. My call center is an outbound call center located in USA and India.


lol, wtf? You asked this question over a year ago, got 2 shit answers then asked for clarification yesterday? :) I don't get it. Did you fall in a wormhole or something and end up 1 year in the future?

The answer to your question is that you need to create a php script that generates a form rather than just have a <form> created manually in a regular .html file.

Your php script needs to check for parameters such as myscript.php?first_name=jim&last_name=bob&[email protected]&more_params=blah

If the php detects the parameters then it builds the form with those parameters as default values so when the form loads the user just has to click "submit" rather than re-enter their information, and if the php script doesn't detect parameters it just builds a blank form.

You need to learn some basic php scripting for this.
 
Back
Top