Hello there publishers 
I am working on a PHP class that can easily track and pull your earnings from your affiliate networks. This would spit out all your earnings from various networks onto one page. I plan on making it open source soon and was wondering if anybody here would use it.
Example Screenshot: i.imgur.com/l6bip6l.png
Example Code Usage:
UPDATE:
The source code for this project is now available!
Please fork via: github.com/itscurt/Earnings
I am working on a PHP class that can easily track and pull your earnings from your affiliate networks. This would spit out all your earnings from various networks onto one page. I plan on making it open source soon and was wondering if anybody here would use it.
Example Screenshot: i.imgur.com/l6bip6l.png
Example Code Usage:
Code:
$adnooka = new Adnooka("pubemail", "base64pw");
$adnooka->printEarnings();
$adscend = new AdscendMedia("pubemail",base64pw");
$adscend->printEarnings();
$awm = new AdworkMedia("pubid","apikey");
$awm->printEarnings();
$cpagrip = new CPAgrip("pubemail", "base64pw");
$cpagrip->printEarnings();
$cpalead = new CPAlead('pubemail','statskey');
$cpalead->printEarnings();
$total = new TotalEarnings(array($adnooka,$adscend,$awm,$cpagrip,$cpalead));
$total->printEarnings();
echo "Today's Total Earnings: " . $total->getEarningsToday();
UPDATE:
The source code for this project is now available!
Please fork via: github.com/itscurt/Earnings
Last edited: