Page 1 of 1

Form filling

PostPosted: Mon Jun 30, 2008 12:37 pm
by teto114
Matt:

Hi, we are starting a campaign, but the client want us to do the following:

When the agent receives a call, we would like the system to automaically redirect their web browser to a URL with values added to the end. The values are:

SourceiD (Unique ID loaded for that call - we provided)
AgentID
Agent First Name
Agent Last Name

the URL would be in the format ([scriptURL]?[var1]=[value1]&[var2]=[value2]

where the placed holders ([...]) would be replaced with the correct values.

Can you give us some orientation on this please?

Thanks a lot for all your help!

Roberto

PostPosted: Mon Jun 30, 2008 3:29 pm
by pylinuxian
login as admin then in campain page use this in url field :

Code: Select all
http://your_desired_url?field1=<?php echo $variable1; ?>&field2=<?php echo $variable2; ?>&field3=<?php echo $variable3; ?>


I don't have vicidial.php in front of me so you will have to read the source for yourself & replace $variableX with right value used in vicidial.php

PostPosted: Mon Jun 30, 2008 3:33 pm
by mflorell
You could also use the SCRIPT tab with an IFRAME for more control over the URL string without editing any source code.