Contact: aviboots(AT)netvision.net.il
40,026 questions
51,982 answers
573 users
echo PHP_OS; /* run: WINNT */
if (PHP_OS == "WIN32" || PHP_OS == "WINNT") { echo "Windows"; } else { if (PHP_OS == "Linux") { echo "Linux"; } } /* run: Windows */