Is there an easy way to update this query using javascript or something similar ? I am using a simple cache that isn't updating this query:
$query_rs_update = sprintf("UPDATE cute_news SET views = views+1 WHERE id = %s", GetSQLValueString($colname_DetailRS1, "int"));
$rs_update = mysql_query($query_rs_update) or die(mysql_error());
Trying to get it to record views, even when the cache is on ?
Thanks NINJAS!!!