View Single Post
Old 06-08-2012, 08:49 AM  
MichaelP
Registered User
 
Industry Role:
Join Date: Aug 2003
Location: QWEBEC Corporate Office
Posts: 7,124
You can try this in PHP :

Weorks good for me


**?
IF (strstr($_SERVER['HTTP_USER_AGENT'],'iPhone') || strstr($_SERVER['HTTP_USER_AGENT'],'iPod'))
{
header('Location:YOUR-URL-FOR-IPOD-AND-IPHONE');
exit();
} ELSE IF (strstr($_SERVER['HTTP_USER_AGENT'],'iPad'))
{
header('Location: YOUR-URL-FOR-IPAD');
exit();
}
?**

** = < and >
MichaelP is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote