/ Published in: PHP
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
/** * Detects most mobile agents. * * @return bool * @see http://en.wikipedia.org/wiki/List_of_user_agents_for_mobile_phones */ function isMobile() { $userAgent = $_SERVER["HTTP_USER_AGENT"]; return $yes; }