?
Path : /home/admin/domains/happytokorea.com/private_html/ |
Current File : /home/admin/domains/happytokorea.com/private_html/scanqrcode.php |
<?php //Detect special conditions devices $iPod = stripos($_SERVER['HTTP_USER_AGENT'],"iPod"); $iPhone = stripos($_SERVER['HTTP_USER_AGENT'],"iPhone"); $iPad = stripos($_SERVER['HTTP_USER_AGENT'],"iPad"); $Android = stripos($_SERVER['HTTP_USER_AGENT'],"Android"); $webOS = stripos($_SERVER['HTTP_USER_AGENT'],"webOS"); //do something with this information if( $iPod || $iPhone || $iPad){ header( "location: fb://page/?id=350867648502" ); exit(0); } else if($Android){ header( "location: fb://page/350867648502" ); exit(0); }else if($webOS){ header( "location: fb://page/350867648502" ); exit(0); } else { header( "location: http://www.facebook.com/350867648502" ); exit(0); } ?>