-2
I’m generating a bar code,:
Number of the shop:
$v_ficha_loja = $row['ficha_loja'];
= (1)or (2)etc..Number of the environment:
$v_ficha_ambiente = $row['ficha_ambiente'];
(1)or (2)etc..And a sequential number:
1,2,3,4,5,6,7, .... 100.
'Cause I’m generating a report and every report will have its barcode, doubt:
Based above the barcode will have 11 numbers, as follows:
- x1x2xxxxxx1
- x1x1xxxxxx2
- x1x2xxxxxx3
- x1x2xxxxxx4
- x1x2xxxxx10
- x1x2xxxxx11
- x1x2xxxxx12
- x1x2xxxx100
Where did I put it x
I want to include the 0
how can I do this ?
I’ve got the system code and the barcode all ready,.
Intended end result:
01010000001
0(Numero da loja)0(Numero do ambiente)0000(numero sequencial)
, would that be the sequence of numbers? The first 2 zeroes are mutable, or wholex
will always be zero?– Papa Charlie
What you’ve tried to do?
– Jorge B.