document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <?php
  2.  
  3.   if(isset($_GET["number"]){
  4.     echo $_GET["number"];
  5.   }
  6.   else{
  7.     echo "Variable not set";
  8.   }
  9. ?>
');