I have links on my website that I need to keep track of how many times they are clicked and would like to save the clicks to my mySQL database for example: <a href=\"http://www.topmmorpgsites.com\" target=\"_blank\">Top MMORPG Sites</a> is a link on the site. When it is clicked I would like the database to update from 350 clicks to 351. Any thoughts?
Create a table include some columns: SiteId, Url, ClickCount Render link as: <a href="click.php?site=<? echo SiteId ?>"><?php echo Url ?></a> In page click.php, increase ClickCount.