Last active
August 29, 2015 14:07
-
-
Save activeprospect-support/da844cf9abd7372fe76a to your computer and use it in GitHub Desktop.
How to track web traffic using campaign fields
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
<? | |
$trafficsource = $_GET['trafficsource']; | |
$keyword = $_GET['keyword']; | |
?> | |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" | |
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
<html> | |
<head> | |
<title> </title> | |
</head> | |
<body> | |
<form> | |
<input type="hidden" name="trafficsource" value="<?=$trafficsource?>"/> | |
<input type="hidden" name="keyword" value="<?=$keyword?>"/> | |
</form> | |
</body> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment