Ik krijg op mijn pagina de volgende fout:
Fatal error: Cannot redeclare get_ip() (previously declared in /home/wo/public_html/test/includes/functions.inc.php:12) in /home/wo/public_html/test/includes/functions.inc.php on line 9
En dit is de code rond dat stuk:
if (!defined("FORUM")){
@header("Status: 404 Niet Gevonden");
exit;
}
function get_ip() {
// function gets ip from visitor, or a host that is given
if( getenv('HTTP_X_FORWARDED_FOR') == '' ){
if ( getenv ("REMOTE_ADDR") == '' ){
$ip = "127.0.0.1";
} else {
$ip = getenv ("REMOTE_ADDR");
}
} else {
$ip = getenv('HTTP_X_FORWARDED_FOR');
}
return $ip;
}
Wie kan me helpen om de fout er uit te halen?
978 views