mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-01-15 08:56:20 +01:00
17 lines
301 B
PHP
17 lines
301 B
PHP
|
<?php
|
||
|
|
||
|
include_once __DIR__.'/../../core.php';
|
||
|
|
||
|
echo '<style>
|
||
|
.barcode {
|
||
|
padding: 4mm;
|
||
|
padding-bottom: 2.5mm;
|
||
|
margin: 0;
|
||
|
}
|
||
|
</style>';
|
||
|
|
||
|
$number = 32;
|
||
|
for ($i = 0; $i < $number; ++$i) {
|
||
|
echo '<barcode code="'.$articolo->barcode.'" type="EAN13" height="1" size="1" class="barcode" />';
|
||
|
}
|