/ Published in: PHP
Place in your functions.php file and call it in your theme like this:
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
/*Browser Detect*/ function browser_detect(){ //detecting device if ($ipod == true || $iphone == true){ echo "<div class=\"browser\">"; echo "<img src=\"images/iphone.png\">"; echo "<br />"; echo "<p>You are viewing this site on an Ipod or Iphone</p>"; echo "</div>"; }elseif($firefox == true){ echo "<div class=\"browser\">"; echo "<img src=\"images/Firefox.png\">"; echo "<br />"; echo "<p>You are viewing this site in Firefox</p>"; echo "</div>"; }elseif($ie == true){ echo "<div class=\"browser\">"; echo "<img src=\"images/IE.png\">"; echo "<br />"; echo "<p>You are viewing this site in Internet Explorer</p>"; echo "</div>"; }elseif($netscape == true){ echo "<div class=\"browser\">"; echo "<img src=\"images/Netcape.png\">"; echo "<br />"; echo "<p>You are viewing this site in Netscape</p>"; echo "</div>"; }elseif($traveler == true){ echo "<div class=\"browser\">"; echo "<img src=\"images/Traveler.png\">"; echo "<br />"; echo "<p>You are viewing this site in Traveler</p>"; echo "</div>"; }elseif($maxthon == true){ echo "<div class=\"browser\">"; echo "<img src=\"images/Maxthon.png\">"; echo "<br />"; echo "<p>You are viewing this site in Maxthon</p>"; echo "</div>"; }elseif($chrome == true){ echo "<div class=\"browser\">"; echo "<img src=\"images/Chrome.png\">"; echo "<br />"; echo "<p>You are viewing this site in Chrome</p>"; echo "</div>"; }elseif($safari == true){ echo "<div class=\"browser\">"; echo "<img src=\"images/Safari.png\">"; echo "<br />"; echo "<p>You are viewing this site in Safari</p>"; echo "</div>"; }elseif($opera == true){ echo "<div class=\"browser\">"; echo "<img src=\"images/Opera.png\">"; echo "<br />"; echo "<p>You are viewing this site in Opera</p>"; echo "</div>"; }else{ echo "<div class=\"browser\">"; echo "<img src=\"images/Q.png\">"; echo "<br />"; echo "<p>We currently dont know your browser.</p>"; echo "</div>"; } };
URL: http://afj176.com