shop-old/libs/ean/ean.php
2026-04-20 01:03:43 +02:00

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');
}
?>