Created
January 7, 2014 19:04
-
-
Save ksnider/8304795 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| echo "Hello World! <br/><br/>"; | |
| $contactId = $_REQUEST['id']; | |
| $name = $_REQUEST['name']; | |
| $passion = $_REQUEST['fav_sport']; | |
| echo 'Contact ID: '.$contactId.'<br/>'; | |
| echo 'Name: '.$name.'<br/>'; | |
| echo 'Favorite Sport: '.$passion.'<br/>'; | |
| /* | |
| * From here, now that we have this info passed to our script, we might | |
| * - use it to pre-populate form fields or a custom thank you page | |
| * - use the contact ID and dsUpdate to add new info to Infusionsoft record | |
| * - use dsLoad or dsQuery to get more info from IS that isn't passed, like orders opps, tags, etc | |
| * - how else ?? | |
| */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment