I'm working on a php application. I need to access unique clients ip addresses. $_SERVER['REMOTE_ADDR']
returns client ip address, but the problem is that value is identical for users who visit my site via one modem or router. In fact my server identifies him as a one visitor. How can I differentiate between some users that use one real ip address?
EDIT
I don't want to use cookie based solution. Cookie is not a reliable solution. I want to identify users from it's ip, not cookie.