document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <?php
  2.  
  3.   $uagent = $_SERVER[\'HTTP_USER_AGENT\'];
  4.   if ( preg_match("/iPad/", $uagent) ) {
  5.     print ("<div align=center > <table border=0 width=40%> <tr> <td> <p> Dear User, </p> <p> Thank you for submitting your GET request to our site.  We\'ve reviewed your HTTP header and, consistent with the criteria considered in our approval process, we have chosen not to return our website to you.  As you know, we reserve the right, in our sole discretion, to reject HTTP requests for any reason.</p> <p> Regards, </p> <p> <I> The Developers </I> </p> </td> </tr> </table> </div>");
  6.     exit(0);
  7.   }
  8. ?>
');