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, Quote Link to comment 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.... } Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.