-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBCGupca.php
36 lines (31 loc) · 963 Bytes
/
BCGupca.php
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
<?php
define('IN_CB', true);
include('include/header.php');
registerImageKey('code', 'BCGupca');
$characters = array('0', '1', '2', '3', '4', '5', '6', '7', '8', '9');
?>
<div id="validCharacters">
<h3>Valid Characters</h3>
<?php foreach ($characters as $character) { echo getButton($character); } ?>
</div>
<div id="explanation">
<h3>Explanation</h3>
<ul>
<li>Encoded as EAN-13.</li>
<li>Most common and well-known in the USA.</li>
<li>There is 1 number system (NS), 5 manufacturer code, 5 product code and 1 check digit.</li>
<li>
NS Description :
<br />0 = Regular UPC Code
<br />2 = Weight Items
<br />3 = Drug/Health Items
<br />4 = In-Store Use on Non-Food Items
<br />5 = Coupons
<br />7 = Regular UPC Code
<br />And other are Reserved.
</li>
</ul>
</div>
<?php
include('include/footer.php');
?>