Skip to content

Instantly share code, notes, and snippets.

@ksnider
Created January 7, 2014 18:37
Show Gist options
  • Select an option

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

Select an option

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