I want to track hits to specific pages on my site. I set up the database with names. count_id and count. I can't seem to get it to work. Any ideas? Thanks.
Here is what I have:
<?
mysql_connect("localhost","name","pass");
mysql_select_db("TrackPlays");
session_start();
$myValue = "A";
$result = mysql_query("SELECT count_id FROM simplecount WHERE name like '$myValue%' ");
while($r=mysql_fetch_array($result))
{
$count=$r["count_id"];
if (!session_is_registered("counted")){
mysql_query("UPDATE simplecount SET count=(count + 1) WHERE count_id='$count'");
session_register("counted");
}
?>