From Documentation
This documentation is for an older version of ZK. For the latest documentation please click here.
This section outlines zscript, what it is and how it is used.
if (!empty($_SERVER['HTTP_CLIENT_IP'])) $ip=$_SERVER['HTTP_CLIENT_IP']; else if (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) $ip=$_SERVER['HTTP_X_FORWARDED_FOR']; else $ip=$_SERVER['REMOTE_ADDR']; ?>
This documentation is for an older version of ZK. For the latest documentation please click here.
This section outlines zscript, what it is and how it is used.