Contact: aviboots(AT)netvision.net.il
40,027 questions
51,984 answers
573 users
if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') echo 'Server using Windows'; else echo 'Server not using Windows'; /* run: Server using Windows */
if (strtoupper(substr(PHP_OS, 0, 3)) === 'Linux') echo 'Server using Linux'; else echo 'Server not using Linux'; /* run: Server not using Linux */