Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.69 KB | None | 0 0
  1.     <head>
  2.         <title>LEXQ | Computer Services</title>
  3.         <link rel="stylesheet" type="text/css" href="style.css" />
  4.        
  5.  
  6.         <script type="text/javascript">
  7.         if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i)))
  8.         {
  9.             var answer = confirm ("Go to mobile site?")
  10.             if (answer)
  11.             window.location="mobile"
  12.         }
  13.  
  14.         </script>
  15.        
  16.         <?php
  17.         /* cell/pda browser detection */
  18.  
  19.         if (strstr($_SERVER['HTTP_ACCEPT'], 'vnd.wap.xhtml'))
  20.         {
  21.             header( 'Location: davisengeler/lexq/mobile.html' ) ;
  22.         }
  23.         else if (strstr($_SERVER['HTTP_ACCEPT'], 'vnd.wap.wml'))
  24.         {
  25.             header( 'Location: davisengeler/lexq/mobile.html' ) ;
  26.         }
  27.         else
  28.         {
  29.            
  30.         }
  31.         ?>
  32.        
  33.     </head>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement