momo5502

Banner Shortcut

May 21st, 2013
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.37 KB | None | 0 0
  1. <?php
  2.  
  3.     if ( !isSet($_GET['debug']) || $_GET['debug'] == "0" )
  4.         header( "Content-Type: image/png" );
  5.  
  6.     $address = "http://momo.blackpulse.us/Banners/?";
  7.  
  8.     foreach ($_GET as $key => $value)
  9.         $address .= $key . "=" . $value . "&";
  10.    
  11.     $address = substr( $address, 0, strlen( $address ) - 1 );
  12.  
  13.     echo file_get_contents( $address );
  14.  
  15. ?>
Advertisement
Add Comment
Please, Sign In to add comment