Runilo Posted June 11, 2006 Share Posted June 11, 2006 Hello.On my website i have this sms application which is beeing heavily used, so therefore i would like for the number of sent messages for each user to be 5 per day, and no more.When a user sends an sms, he is redirected to a page that confirms that the message has been sent. That page is called sms-ok.php. On this page i would like to have a cookie based counter. I have found this little script that does the counting:<html><head><title>PHP - Cookie Example 1</title></head><body><h1>Cookie Example 1</h1><font size=+2 face = verdana><? $visitcount = $HTTP_COOKIE_VARS["visits"]; if( $visitcount == "") $visitcount = 0; else $visitcount++; setcookie("visits",$visitcount); print "This is visit number " . $visitcount;?></font></body></html>Now, does anyone know how i can set the expiration time of this cookie to 24 hours?And how would i be able to display a message on another page, when the counter has reached 5?Any help is much appresiated Quote Link to comment https://forums.phpfreaks.com/topic/11739-cookie-counter/ Share on other sites More sharing options...
robos99 Posted June 11, 2006 Share Posted June 11, 2006 to set the expire time of the cookie to 24 hours just insert time()+86400 (number of seconds in 24 hours) as your expire time.but if you want to limit the number of messages sent per day you shouldn't use cookies. all a user has to do is edit the cookie to show a different number (which is easy). use a database to keep track of messages sent per day.but if you insist on doing it this way, to display a message when the limit is reached simply do this:if($_COOKIE['visits'] >=5){ //put your error message here} Quote Link to comment https://forums.phpfreaks.com/topic/11739-cookie-counter/#findComment-44413 Share on other sites More sharing options...
Runilo Posted June 11, 2006 Author Share Posted June 11, 2006 Thank you for the replyWell, using cookies just seems as the easiest way to go about it.I would like to ask a few more questions if that's alright.If i do not set an expiration time on the cookie, how long will it last??The thing you mentioned about the database seems like a lot of work. I hope i'm not being too demanding, but would you care do explain a little bit on how do accomplish this? Quote Link to comment https://forums.phpfreaks.com/topic/11739-cookie-counter/#findComment-44420 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.