workfor1dollar Posted February 25, 2009 Share Posted February 25, 2009 Hello, I am new to the forum so i hope this is the right place. I have got hold of an image hosting script, And i would like to fix a few things. http://www.images.funshizzle.com/view-288_3_minutes.jpg When you go to that link and refresh the total views increases. How can i limit it so it only increases once every session so users can not sit there and refresh there page. $sql="insert into imagehits set referer='".$referer."', kb=$kb, filename='".$file."',ip='".$currentip."',timestamp=".time().""; <font face="Comic Sans MS" size="4" color="#333333">Total Views: <?=$view1?></font><br /><br /> Thank you, Link to comment https://forums.phpfreaks.com/topic/146815-multi-ip-views-image-hosting/ Share on other sites More sharing options...
blacksharkmedia Posted March 12, 2009 Share Posted March 12, 2009 You must get the user ip, store it in a session variable and everytime the views increases(mysql insert) you check it again so the same user doesn't count for the picture views increase. if ($nowip!=$userip) { ....then sql insert code.... } else { do nothing.... } Link to comment https://forums.phpfreaks.com/topic/146815-multi-ip-views-image-hosting/#findComment-783215 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.