15 lines
161 B
PHP
15 lines
161 B
PHP
<?php
|
|
|
|
if (strlen($_GET['ean']) == 13 && is_numeric($_GET['ean'])) {
|
|
|
|
|
|
require("barcode.class.php");
|
|
|
|
barcode_print($_GET['ean'], 'EAN', 1.9, 'png');
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|