using $_SERVER['HTTP_CLIENT_IP']
is not providing the client's ip address.
What could be the reason?
using $_SERVER['HTTP_CLIENT_IP']
is not providing the client's ip address.
What could be the reason?
Try $_SERVER['REMOTE_ADDR'] or $_SERVER['REMOTE_HOST']. That will give you your clients remote IP.
you can use: