Skip to content

Instantly share code, notes, and snippets.

@ksnider
Created January 8, 2014 00:22
Show Gist options
  • Select an option

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

Select an option

Save ksnider/8309415 to your computer and use it in GitHub Desktop.
<?php
// from https://dfy90994.infusionsoft.com/app/form/default-campaign-form2
$contactId = $_REQUEST['contactId'];
$name = $_REQUEST['inf_field_FirstName'];
$email = $_REQUEST['inf_field_Email'];
$passion = $_REQUEST['inf_custom_favsport'];
if($passion == 'polo') {
header('Location: http://api-demo.com/scripts/polo-page.php?name='.urlencode($name).'&email='.urlencode($email));
} else {
header('Location: http://api-demo.com/scripts/normal-page.php');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment