דוגמא:
קוד PHP שניראה כך:
<?php if (stristr($_SERVER["USER_AGENT"], "MSIE")) { print("You're being slave to microsft by using Internet Explorer!<br>\n"); } else print("You're not using Internet Explorer, therefor you might not see that site correctly.<br>\n"); ?>
במקרה שהמשתמש משתמש בIE, הוא יראה ב"אתר" את הדבר הבא:
You're being slave to microsft by using Internet Explorer!
במידה ולא, הוא יראה:
You're not using Internet Explorer, therefor you might not see that site correctly.