
 Mark W Ryan - 2007-01-05 16:17:10 - 
In reply to message 1 from brandesThe demo script should read:
include_once("I25Barcode_class.php");
include_once("C39Barcode_class.php");
// many thanks to www.barcodeisland.com for their barcode specs
        //------------------------------------------------
        $bc1 = new I25Barcode('bcx','1234567');
        echo $bc1->getBarcode();  // squirts out style & htlm in one string
        echo '<br>';
        //-----------------------------------------------
        $bc2 = new c39Barcode('bcx','TEST8052');
        //$bc2->setFactor(2.5);  // default is 1, optional enlarge or decrease barcode size
        echo $bc2->getBarcode();  // squirts out style & htlm in one string
        //
        echo '<br>Just print and scan.';
        // have fun