8

I have a website that allows a functionality for any user but each user is only allowed to use it a fixed amount of times.

Allow me to go into some more detail, our "anonymous/guest" user is allowed to search on the database for entries only 3 times per 24 hours. Is there a way I can use the IP to track the users attempts at this, restricting them after 3 attempts and then get it to expire after 24 hours?

The website is built in PHP but whatever language serves this functionality, I am open to it.

EDIT:

This idea comes from a client, they have a list of "stockists" stocking their products and they want to make this information available to users of the website. However, he doesn't want competitors taking advantage of his system and "undercutting" him on his stockists. Hence the restriction. If you can suggest a better way to achieve the same then that'd be amazing

Cheers, Dan

Dan Hanly
  • 7,829
  • 13
  • 73
  • 134
  • 1
    Have you considered what happens when multiple people behind the same firewall visit your site as guests, for example, several students from the same school? This approach is likely to prevent most of the students from searching on the database even once. – kojiro Feb 28 '11 at 10:55
  • Please explain why guests are only allowed to search 3 times per 24 hours. I'm sure the SO members can then give you much nicer solutions than restricting based on IP address. – Sander Marechal Feb 28 '11 at 10:59

1 Answers1

10

You have to use the $_SERVER global variable, like this:

if ($_SERVER['REMOTE_ADDR'] == '127.0.0.1') {
  // restrict
}

But You have to consider kojiro's note: it's not a good idea to restrict by IP address.

Edit: to be constructive.

If you want to do it on low level, you can use cookies. These variables stored in the user's browser, if the user clear the cookies locally, he/she can override your restriction.
http://www.php.net/manual/en/function.setcookie.php

The better solution is to use sessions for this filter:
http://php.net/manual/en/session.examples.basic.php

Eduard7
  • 725
  • 7
  • 19