Kryptos
prjRev.com
I made this little script so you can tease your friends who like the OS you hate!
Have fun!
PHP:
<?php
if (strpos(strtolower($_SERVER['HTTP_USER_AGENT']), strtolower('Mac')))
{
echo 'You have common sense';
}
elseif(strpos(strtolower($_SERVER['HTTP_USER_AGENT']), strtolower('Windows')))
{
echo 'You do not have common sense';
}
elseif(strpos(strtolower($_SERVER['HTPP_USER_AGENT']), strtolower('Linux')))
{
echo 'lol';
}
?>
Have fun!