pnum.php 306 B

1234567891011121314
  1. <?php
  2. /**
  3. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  4. */
  5. $pnum = $_GET['pnum'];
  6. $im = imagecreate(120, 16);
  7. $bg = imagecolorallocate($im, 247, 247, 247);
  8. $textcolor = imagecolorallocate($im, 101, 101, 101);
  9. imagestring($im, 5, 0, 0, $pnum, $textcolor);
  10. header("Content-type: image/png");
  11. imagepng($im);