How can I identify the server IP address in PHP?
If you are using PHP version 5.3 or higher you can do the following:
$host= gethostname(); $ip = gethostbyname($host);
This works well when you are running a stand-alone script, not running through the web server.