Skip to content

Instantly share code, notes, and snippets.

@ynonp
Created February 19, 2012 05:32
Show Gist options
  • Save ynonp/1862134 to your computer and use it in GitHub Desktop.
Save ynonp/1862134 to your computer and use it in GitHub Desktop.
<?php
include("Mobile_Detect.php");
$detect = new Mobile_Detect();
if ( $detect->isMobile() ) {
print("Hello Mobile");
} else {
print("Hello Desktop");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment