subhomoy Posted April 8, 2013 Share Posted April 8, 2013 How to count the unique visits of the same ip in 24 hours.. I'm not sure how to implement this... Can i do it using COOKIE??? If i use cookie then the user can delete the cookie from the browser and again visits the page which will count as another unique impression... Any help will be greatly appreciated... Quote Link to comment Share on other sites More sharing options...
yomanny Posted April 8, 2013 Share Posted April 8, 2013 Grab the IP with the $_SERVER variable and store it in a database with a counter which you just increase for every visit. Quote Link to comment Share on other sites More sharing options...
subhomoy Posted April 8, 2013 Author Share Posted April 8, 2013 I know that but i'm telling how to count unique visits within 24 hrs... Quote Link to comment Share on other sites More sharing options...
Barand Posted April 8, 2013 Share Posted April 8, 2013 Then store IP | Date | Count Quote Link to comment Share on other sites More sharing options...
subhomoy Posted April 8, 2013 Author Share Posted April 8, 2013 Then store IP | Date | Count Can u plz explain it further more... Quote Link to comment Share on other sites More sharing options...
Solution Barand Posted April 8, 2013 Solution Share Posted April 8, 2013 Grab the IP with the $_SERVER variable and store it in a database with a counter which you just increase for every visit. I know that but i'm telling how to count unique visits within 24 hrs... Then store IP | Date | Count Given those last three posts I would have thought it self-explanatory 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.