1234567891011121314 |
- <?php
- /**
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- */
- $pnum = $_GET['pnum'];
- $im = imagecreate(120, 16);
- $bg = imagecolorallocate($im, 247, 247, 247);
- $textcolor = imagecolorallocate($im, 101, 101, 101);
- imagestring($im, 5, 0, 0, $pnum, $textcolor);
- header("Content-type: image/png");
- imagepng($im);
|