| Server IP : 10.200.247.200 / Your IP : 216.73.217.19 Web Server : Apache System : Linux synergy-usa-sites 6.8.0-138-generic #138-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 31 22:41:49 UTC 2026 x86_64 User : jeremy ( 1001) PHP Version : 8.4.25 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/usa_sites/fundingapplications.com/tracker/testing/ |
Upload File : |
<?
require_once("{$_SERVER["DOCUMENT_ROOT"]}/tracker/client/TrackerLib.php");
$tracker = new TrackerLib("usaga");
$params = $tracker->URLParameters();
$trackerparams = $tracker->TrackerParameters();
?>
<html>
<head>
<title>Testing the Tracker</title>
</head>
<body>
Params: <?= $params; ?><br />
TrackerParams: <?= $trackerparams; ?><br />
<img src="http://www.surfcrm.com/tracker/server/tracker.php?<?= $trackerparams; ?>">
<br />
<a href="test1.php?<?= $params; ?>">Click Here - 1</a>
<a href="test2.php?<?= $params; ?>">Click Here - 2</a>
<a href="test3.php?<?= $params; ?>">Click Here - 3</a>
<a href="test4.php?<?= $params; ?>">Click Here - 4</a>
<a href="test5.php?<?= $params; ?>">Click Here - 5</a>
<hr />
<form action="test3.php" method="POST">
Some text: <input type="text" name="sometext">
<?= $tracker->FormParameters(); ?>
<br />
<input type="submit" value="Next">
</form>
</body>
</html>