Advertisement
BlackGuard26

Avail's signature PHP

Nov 15th, 2012
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.80 KB | None | 0 0
  1. <?php
  2.  
  3. /**
  4.  * @author Avail, BlackGuard26
  5.  * @copyright 2012
  6.  */
  7.  
  8. /**
  9.  * It doesn't work with header("Content-type: image/png");
  10.  * I tried almost all possible image extensions, but this code isn't the right on to show an image
  11.  * I guess, I'll give it another shot later
  12.  */
  13.  
  14. $map = <<<END
  15. <img src="sig.png" width="790" height="210" alt="Signature" usemap="#sigmap">
  16. <map name="sigmap">
  17.   <area shape="rect" coords="540,5,767,59" alt="Amity Gaming" href="http://amgaming.eu">
  18.   <area shape="rect" coords="529,59,780,109" alt="FourDeltaOne" href="http://fourdeltaone.net">
  19.   <area shape="rect" coords="537,117,780,156" alt="YouTube" href="http://youtube.com/Knife7331">
  20.   <area shape="rect" coords="609,161,780,210" alt="Twitter" href="http://twitter.com/availuuuuuuuu">
  21. </map>
  22. END;
  23.  
  24. echo($map);
  25. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement