<?php $agent = $_SERVER['HTTP_USER_AGENT']; if(preg_match('/mobile/i', $agent)){ echo "Mobil cihaz"; }else{ echo "Kompüter"; } ?>