Jump to content

Multi IP Views (Image Hosting)


workfor1dollar

Recommended Posts

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

  • 3 weeks later...

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.... }

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.