First page Back Continue Last page Overview Graphics
Optional: Install “nocat” for port redirection to AP
Interpret browser OS and redirect to client page:
include("wavesec.inc");
check_and_go_secure(); $browser = $GLOBALS["HTTP_USER_AGENT"];
if (stristr($browser,"Linux")!= FALSE)
Header("Location: /linux/");
else if (stristr($browser,"Windows NT 5.1")!=FALSE)
Header("Location: /winxp/");
else if (stristr($browser,"Windows NT 5.0")!=FALSE)
Header("Location: /win2k/");
else if (stristr($browser,"Mac OS X")!=FALSE)
Header("Location: /macosx/");
else Header("Location:/other/");
Notes: