Jacek Kowalski
2019-12-16 07517ae563097e04e91ea3fae2c2ca1cf2309b86
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?php
include('./includes/std.php');
 
require_once('includes/generate_html.php');
require_once('includes/generate_code39.php');
 
echo GENERATE_STYLE;
 
echo '<table cellspacing="0">
<tr>';
 
$column = 0;
$row = 0;
foreach(explode("\n", $_POST['kody']) as $i) {
    $i = trim($i);
    
    if(empty($i)) {
        continue;
    }
    
    $i = explode('/', $i);
    validate::MSC($i[0], $i[1], $i[2]);
    $i = $i[0].'/'.$i[1].'/'.$i[2];
    
    while(true) {
        if(!$_POST['no_'.$row.'_'.$column]) {
            break;
        }
        else
        {
            echo '<td></td>';
            column($column, $row);
            continue;
        }
    };
    
    echo '<td style="padding-left: '.margin($column%4).'mm;">
<img src="data:image/gif;base64,'.base64_encode(kod(str_replace('/', '$I', $i))).'" alt=""><br>'.$i.'
</td>
';
    
    column($column, $row);
}
 
while($row != 10 OR $column != 3) {
    echo '<td></td>';
    column($column, $row);
}
 
column($column, $row);
 
echo GENERATE_END;
?>