Details |
Letzte Änderung |
Log anzeigen
| RSS feed
| Revision |
Autor |
Zeilennr. |
Zeile |
| 1 |
lars |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
require_once("Image/Barcode.php");
|
|
|
4 |
|
|
|
5 |
$num = isset($_REQUEST['num']) ? $_REQUEST['num'] : '15101967';
|
|
|
6 |
$type = isset($_REQUEST['type']) ? $_REQUEST['type'] : 'int25';
|
|
|
7 |
$imgtype = isset($_REQUEST['imgtype']) ? $_REQUEST['imgtype'] : 'png';
|
|
|
8 |
|
|
|
9 |
Image_Barcode::draw($num, $type, $imgtype);
|
|
|
10 |
|
|
|
11 |
?>
|