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'];
?>
Thank you for participating in the 2024 ZK Community Survey! Your insights are invaluable for understanding your needs and enhancing our products and services. Here are some interesting findings from the survey: IntelliJ has surpassed Eclipse as the preferred IDE among ZK users. While some have migrated to Jakarta EE, half of our users remain […]
The ZUL Testing Language(ZTL) has been available for one year and during this time we have looked into improving the verification of layout placement, which is hard to verify its correctness. This led to the idea of a visual test is come up to solve the problem…