Advertisement
Guest User

Untitled

a guest
Feb 26th, 2020
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.41 KB | None | 0 0
  1.         <?php
  2.  
  3. //Detect special conditions devices
  4. $iPhone  = stripos($_SERVER['HTTP_USER_AGENT'],"iPhone");
  5. $iPad    = stripos($_SERVER['HTTP_USER_AGENT'],"iPad");
  6. $Android = stripos($_SERVER['HTTP_USER_AGENT'],"Android");
  7. $webOS   = stripos($_SERVER['HTTP_USER_AGENT'],"webOS");
  8.  
  9. //do something with this information
  10.     if( $iPhone ){
  11. ?>
  12.     <a href="fb://group/?id=444955502537159" target="_blank" class="joinfb" name="button1" onclick="dataLayer.push({'event': 'join-facebook-btn'});"><i class="fa fa-facebook"></i>הצטרפו לקהילת הפייסבוק שלנו</a>
  13.     <?php
  14.     } else
  15.     ?>
  16.     <?php
  17.     if($iPad){
  18.     <a href="fb://group/?id=444955502537159" target="_blank" class="joinfb" name="button1" onclick="dataLayer.push({'event': 'join-facebook-btn'});"><i class="fa fa-facebook"></i>הצטרפו לקהילת הפייסבוק שלנו</a>
  19.     ?>
  20.     <?php
  21.     }else if($Android){
  22.     <a href="fb://group/?id=444955502537159" target="_blank" class="joinfb" name="button1" onclick="dataLayer.push({'event': 'join-facebook-btn'});"><i class="fa fa-facebook"></i>הצטרפו לקהילת הפייסבוק שלנו</a>    <?php
  23.     }else if($webOS){
  24.     <a href="fb://group/?id=444955502537159" target="_blank" class="joinfb" name="button1" onclick="dataLayer.push({'event': 'join-facebook-btn'});"><i class="fa fa-facebook"></i>הצטרפו לקהילת הפייסבוק שלנו</a>
  25.     ?>
  26.     }
  27.  
  28. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement