Skip to content

Instantly share code, notes, and snippets.

@PardotGists
Created September 25, 2015 18:40
Show Gist options
  • Save PardotGists/314cfde4080f4715c846 to your computer and use it in GitHub Desktop.
Save PardotGists/314cfde4080f4715c846 to your computer and use it in GitHub Desktop.
Disabling Activity Throttling posting data to hidden iframe first sample
<?php
$first_name = $_POST['first_name'];
$last_name = $_POST['last_name'];
$email = $_POST['email'];
$company = $_POST['company'];
$phone = $_POST['phone'];
$zip = $_POST['zip'];
echo '<iframe src="http://www2.site.com/l/123/2009-04-28/ABCDE?first_name='.$first_name.'&last_name='.$last_name.'&email='.$email.'&company='.$company.'&phone='.$phone.'&zip='.$zip.'" width="1" height="1"></iframe>';
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment