Ok, so here is a tool that I coded to track my Jumptap campaigns.
Firstly, make sure when you create your ads you tick "Yes" for append tracking parameters to destination URL like so:

Next, you need to create a mySQL database. To do this, go into your cPanel and simply click "MySQL databse wizard" 
Give your database a name:

Create a username (just use the same name as the name you've used for the database itself):

And that tick "All privileges" and your done!

Next step is to open up "phpmyadmin" from your cpanel and find the databse you've just created from the left hand side. Click on it and you should see this:

At the top, click "Import" and import this file: http://freebigbrandrewards.com/stm/database.sql
Leave everything else as it is and click "Go" at the bottom of the page.
You should see five new tables added to your database:

Ok, now we've set this up. Next step is to go to your landing page, and insert the following code (note: your landing page MUST be in php):
[PHP]<?php
$keyword = $_GET['jt-keyword'];
$handset = $_GET['jt-handset'];
$site = $_GET['jt-site'];
$operator = $_GET['jt-operator'];
$adbundle = $_GET['jt-adbundle'];
$con = mysql_connect("localhost","DATABASE_USERNAME","USE RNAME PASSWORD");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("DATABASE_NAME", $con);
// Store keyword
$result = mysql_query("SELECT * FROM Keyword
WHERE Keyword='$keyword'");
while($row = mysql_fetch_array($result))
{
$dbkwrd = $row['Keyword'];
$dbhits = $row['Hits'];
$dbclicks = $row['Clicks'];
}
$nhit = $dbhits + 1;
if($dbkwrd!=''){
mysql_query("UPDATE Keyword SET Hits = '$nhit'
WHERE Keyword = '$keyword'");
}
else{
mysql_query("INSERT INTO Keyword (Keyword, Hits, Clicks)
VALUES ('$keyword', '1', '0')");
}
// Stored keyword
// Store handset
$result = mysql_query("SELECT * FROM Handset
WHERE Handset='$handset'");
while($row = mysql_fetch_array($result))
{
$dbkwrd = $row['Handset'];
$dbhits = $row['Hits'];
$dbclicks = $row['Clicks'];
}
$nhit = $dbhits + 1;
if($dbkwrd!=''){
mysql_query("UPDATE Handset SET Hits = '$nhit'
WHERE Handset = '$handset'");
}
else{
mysql_query("INSERT INTO Handset (Handset, Hits, Clicks)
VALUES ('$handset', '1', '0')");
}
// Stored handset
// Store site
$result = mysql_query("SELECT * FROM Site
WHERE Site='$site'");
while($row = mysql_fetch_array($result))
{
$dbkwrd = $row['Site'];
$dbhits = $row['Hits'];
$dbclicks = $row['Clicks'];
}
$nhit = $dbhits + 1;
if($dbkwrd!=''){
mysql_query("UPDATE Site SET Hits = '$nhit'
WHERE Site = '$site'");
}
else{
mysql_query("INSERT INTO Site (Site, Hits, Clicks)
VALUES ('$site', '1', '0')");
}
// Stored site
// Store operator
$result = mysql_query("SELECT * FROM Operator
WHERE Operator='$operator'");
while($row = mysql_fetch_array($result))
{
$dbkwrd = $row['Operator'];
$dbhits = $row['Hits'];
$dbclicks = $row['Clicks'];
}
$nhit = $dbhits + 1;
if($dbkwrd!=''){
mysql_query("UPDATE Operator SET Hits = '$nhit'
WHERE Operator = '$operator'");
}
else{
mysql_query("INSERT INTO Operator (Operator, Hits, Clicks)
VALUES ('$operator', '1', '0')");
}
// Stored operator
// Store adbundle
$result = mysql_query("SELECT * FROM Adbundle
WHERE Adbundle='$adbundle'");
while($row = mysql_fetch_array($result))
{
$dbkwrd = $row['Adbundle'];
$dbhits = $row['Hits'];
$dbclicks = $row['Clicks'];
}
$nhit = $dbhits + 1;
if($dbkwrd!=''){
mysql_query("UPDATE Adbundle SET Hits = '$nhit'
WHERE Adbundle = '$adbundle'");
}
else{
mysql_query("INSERT INTO Adbundle (Adbundle, Hits, Clicks)
VALUES ('$adbundle', '1', '0')");
}
// Stored adbundle
mysql_close($con);
?>[/PHP]
You'll have to change three things in that code:
DATABASE_USERNAME: The username of the database which you've created using the mysql wizard in step 2.
USERNAME PASS: It's password
DATABASE_NAME: Your database's name.
Now, when someone visits your landing page from a jumptap ad, it will store that info into the database which you can later review using phpmyadmin.
Next step. We need to track the clicks! So, what you need to do, is to make a new PHP file and send your clicks FROM your landing page to that PHP document.
Let's call that file "continue.php"
[PHP]<?php
$url = "URL";
$header=$_GET['header'];
$keyword=$_GET['keyword'];
$handset=$_GET['handset'];
$site=$_GET['site'];
$operator=$_GET['operator'];
$adbundle=$_GET['adbundle'];
$con = mysql_connect("localhost","DATABASE_USERNAME","USE R PASSWORD");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("DATABASE NAME", $con);
// Store keyword
$result = mysql_query("SELECT * FROM Keyword
WHERE Keyword='$keyword'");
while($row = mysql_fetch_array($result))
{
$dbkwrd = $row['Keyword'];
$dbhits = $row['Hits'];
$dbclicks = $row['Clicks'];
}
$nclicks = $dbclicks + 1;
mysql_query("UPDATE Keyword SET Clicks = '$nclicks'
WHERE Keyword = '$keyword'");
// Stored keyword
// Store handset
$result = mysql_query("SELECT * FROM Handset
WHERE Handset='$handset'");
while($row = mysql_fetch_array($result))
{
$dbkwrd = $row['Handset'];
$dbhits = $row['Hits'];
$dbclicks = $row['Clicks'];
}
$nclicks = $dbclicks + 1;
mysql_query("UPDATE Handset SET Clicks = '$nclicks'
WHERE Handset = '$handset'");
// Stored handset
// Store site
$result = mysql_query("SELECT * FROM Site
WHERE Site='$site'");
while($row = mysql_fetch_array($result))
{
$dbkwrd = $row['Site'];
$dbhits = $row['Hits'];
$dbclicks = $row['Clicks'];
}
$nclicks = $dbclicks + 1;
mysql_query("UPDATE Site SET Clicks = '$nclicks'
WHERE Site = '$site'");
// Stored site
// Store operator
$result = mysql_query("SELECT * FROM Operator
WHERE Operator='$operator'");
while($row = mysql_fetch_array($result))
{
$dbkwrd = $row['Operator'];
$dbhits = $row['Hits'];
$dbclicks = $row['Clicks'];
}
$nclicks = $dbclicks + 1;
mysql_query("UPDATE Operator SET Clicks = '$nclicks'
WHERE Operator = '$operator'");
// Stored operator
// Store adbundle
$result = mysql_query("SELECT * FROM Adbundle
WHERE Adbundle='$adbundle'");
while($row = mysql_fetch_array($result))
{
$dbkwrd = $row['Adbundle'];
$dbhits = $row['Hits'];
$dbclicks = $row['Clicks'];
}
$nclicks = $dbclicks + 1;
mysql_query("UPDATE Adbundle SET Clicks = '$nclicks'
WHERE Adbundle = '$adbundle'");
// Stored adbundle
mysql_close($con);
echo '
<head>
<meta http-equiv="REFRESH" content="0;url'.$url.'"></head>
';
echo 'Redirecting. <a href="'.$url.'">Click here if not redirected.</a>';
?>
[/PHP]
You'll have to change four things in that code:
URL: The URL where you want to send traffic to i.e. the offer from a network.
DATABASE_USERNAME: The username of the database which you've created using the mysql wizard in step 2.
USERNAME PASS: It's password
DATABASE_NAME: Your database's name.
DONE!
Now that your tracking is done, you can monitor the results from phpmyadmin.
NOW HIT DAT THANKS BUTTON!
On a final note:

+ Thanks for the effort!
Are you able to show a sample of data that shows up in phpmyadmin?
Sure!
For example, here is a sample data from my "Keyword" table:

From this, I can see which category gets the most click trough. This is how it looks like for every table.
Thanks for taking the time to write this up.
With a little PHP to code a GUI this would be great for people starting out.
Give me ideas, tell me improvements and I'll have it done by tomorrow.
nice script. you could easily make it global for different networks if you were not using the hardcoded JT params. thanx for sharing
awesome. thanks a lot man
I have some feature requests:
^^ alright. Some good stuff there.
Good stuff h,
Might be a dumb question - but can the script be used on other traffic sources ?
^ i'll try my best