« Return

Detect ipod and iphone devices


<?php
  $agent = $_SERVER['HTTP_USER_AGENT'];
  $mobile = (strpos($agent,'iPod') || strpos($agent,'iPhone')) ? true : false;
  if ( $mobile ) {
    echo '';     
  }
?>