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. It will be open source and was wondering if anybody here would use it. Example Screenshot: http://i.imgur.com/l6bip6l.png Example Code Usage: $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(); Code (markup): UPDATE: The source code for this project is now available! Please fork via: https://github.com/itscurt/Earnings