Jump to content

Finding IP adresses


Xyphon

Recommended Posts

lol ok...

 

Here's how I do it, in my login page, I have it update a users ip each time they login.

 

Create a new column in your users table called user_ip

 

then just do something like this in your login page

 

$User_IP = $_SERVER['REMOTE_ADDR'];

 

$IP = mysql_query (UPDATE users SET user_ip='$User_IP' WHERE username = '$username'")

 

Hope that helps :D

Link to comment
https://forums.phpfreaks.com/topic/82016-finding-ip-adresses/#findComment-416727
Share on other sites

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.