Skip to content

Instantly share code, notes, and snippets.

@ksnider
Created January 7, 2014 19:04
Show Gist options
  • Select an option

  • Save ksnider/8304795 to your computer and use it in GitHub Desktop.

Select an option

Save ksnider/8304795 to your computer and use it in GitHub Desktop.
<?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