Created
January 7, 2014 18:37
-
-
Save ksnider/8304250 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 | |
| // Encourage you to add your own comments as we go | |
| /* | |
| This is how you | |
| add multi-line comments | |
| */ | |
| echo "Hello World! <br/><br/>"; | |
| $contactId = $_GET['id']; | |
| $name = $_GET['name']; | |
| $passion = $_GET['fav_sport']; | |
| echo 'Contact ID: '.$contactId.'<br/>'; | |
| echo 'Name: '.$name.'<br/>'; | |
| echo 'Favorite Sport: '.$passion.'<br/>'; | |
| /* | |
| * What, in Infusionsoft, creates a query string? | |
| * - Pass contact info to thank you page | |
| * - Product bundle links | |
| * - You ... you can add query strings to any URL | |
| * - where else ?? | |
| * | |
| * How about taking info from somewhere and putting it in IS? | |
| - Gravity forms | |
| */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment