Something simple
Posted: Fri Mar 05, 2004 2:27 pm
Code: Select all
$ip = $REMOTE_ADDR;
$host = $REMOTE_HOST;
$message = "ip: $ip Host: $host ";Anybody got the fix ?Notice: Undefined variable: REMOTE_HOST
A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
Code: Select all
$ip = $REMOTE_ADDR;
$host = $REMOTE_HOST;
$message = "ip: $ip Host: $host ";Anybody got the fix ?Notice: Undefined variable: REMOTE_HOST
Code: Select all
$_ENV['remote_host'];