Advertisement
BlackGuard26

Untitled

Nov 14th, 2012
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.63 KB | None | 0 0
  1. <?php
  2.  
  3. /**
  4.  * @author Avail, BlackGuard26
  5.  * @copyright 2012
  6.  */
  7. header( "Content-Type: image/png" );
  8.  
  9. $map = <<<END
  10. <img src="sig.png" width="790" height="210" alt="Signature" usemap="#sigmap">
  11. <map name="sigmap">
  12.   <area shape="rect" coords="540,5,767,59" alt="Amity Gaming" href="http://amgaming.eu">
  13.   <area shape="rect" coords="529,59,780,109" alt="FourDeltaOne" href="http://fourdeltaone.net">
  14.   <area shape="rect" coords="537,117,780,156" alt="YouTube" href="http://youtube.com/Knife7331">
  15.   <area shape="rect" coords="609,161,780,210" alt="Twitter" href="http://twitter.com/availuuuuuuuu">
  16. </map>
  17. END;
  18.  
  19. echo($map);
  20. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement