Help for this page

Select Code to Download


  1. or download this
    $_cusIp = $ENV{'HTTP_X_FORWARDED_FOR'} || $ENV{REMOTE_ADDR};
    
  2. or download this
    $_cusIp = $ENV{'HTTP_X_FORWARDED_FOR'} or $ENV{REMOTE_ADDR};
    
  3. or download this
    $_cusIp = $ENV{'HTTP_X_FORWARDED_FOR'};
    $_cusIp = $ENV{REMOTE_ADDR} if !$_cusIp;