Advertisement
Guest User

Untitled

a guest
Jul 4th, 2015
436
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. <a href="whatsapp://send?text=Hello%20World!">Hello, world!</a>
  2.  
  3. NSURL *whatsappURL = [NSURL URLWithString:@"whatsapp://send?text=Hello%2C%20World!"];
  4. if ([[UIApplication sharedApplication] canOpenURL: whatsappURL]) {
  5. [[UIApplication sharedApplication] openURL: whatsappURL];
  6. }
  7.  
  8. <?php
  9. $iPod = stripos($_SERVER['HTTP_USER_AGENT'],"iPod");
  10. $iPhone = stripos($_SERVER['HTTP_USER_AGENT'],"iPhone");
  11. $iPad = stripos($_SERVER['HTTP_USER_AGENT'],"iPad");
  12. $Android = stripos($_SERVER['HTTP_USER_AGENT'],"Android");
  13. if( $iPod || $iPhone || $iPad ) {
  14. // ???
  15. } else if( $Android ) {
  16. echo '<a href="whatsapp://send?text=Hello%20World!">Hello, world!</a>';
  17. }
  18. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement