I use a php3 script that takes ENV variables from visitors such as REMOTE_ADDR. Is there any way to make a php script search for the domain (or at least some related info)associated with that IP and make it avalaible as a variable? Thank you
Check out the Network Functions section of the PHP Manual. There are 3 functions which may be what you're looking for:
gethostbyaddr() gethostbyname() gethostbynamel()
Hope this helps!!
Cheers,
Geoff A. Virgo