-
php
Mobile Detection-change css file
معرفة الزائر ان كان متصل من موبايل
18:54 Nov 28 2010 | Tags :
function mobileCSS() {
$agent = $_SERVER['HTTP_USER_AGENT'];
if(preg_match('/iPhone|Android|Blackberry/i', $agent)){
echo "mobile.css";
}
else {
echo "main.css";
}
}
<link rel="stylesheet" type="text/css" href="css/<?php mobileCSS(); ?>" media="screen" charset="utf-8" />
Owned Code :
andrew
Add comment
To add a comment, please : Login or Sign up