Advertisement
Guest User

Untitled

a guest
Mar 27th, 2017
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. <?php
  2. $device = '1';
  3. $info= $_SERVER['HTTP_USER_AGENT'];
  4. if( stristr($info,'ipad') ) || ( stristr($info'],'iphone') ) || ( stristr($info'],'blackberry') ) || ( stristr($info'],'android') ){
  5. $device = "0";
  6. }
  7. if($device=='0'){
  8. //redirect to mobile site
  9. }
  10. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement