<?php
if(strpos($_SERVER['HTTP_USER_AGENT'], 'Firefox')){
  die('Firefox ile bu siteyi goruntuleyemezsiniz.');
}
?>
ie için

<?php
if(strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE 6.')){
  die('iexplore 6 ile bu siteyi goruntuleyemezsiniz.');
}
?>
Justrulz