Hallo,
I need to check if the remote is a windows type server.
I remember that there was a function to identify the server type (but I'm not sure).
is there a beter solution than this?
if (preg_match("/Win32/", $_SERVER['SERVER_SOFTWARE'])) {
echo "is windows!";
}