Different content for Mac and Win
<?php
if (stristr($_SERVER['HTTP_USER_AGENT'],"mac")) {
echo 'Hello, Im a Mac.';
} else {
echo 'And Im a PC.';
}
?>
Instructions:
Display different content to Mac and Windows users (example:software download link for different platforms).