Image_Barcode
[ class tree: Image_Barcode ] [ index: Image_Barcode ] [ all elements ]

Source for file barcode_img.php

Documentation is available at barcode_img.php

  1. <?php
  2.  
  3. require_once("Image/Barcode.php");
  4.  
  5. $num     '15101967';
  6. $type    'int25';
  7. $imgtype 'png';
  8.  
  9. $num = isset($_REQUEST&& is_array($_REQUEST&& isset($_REQUEST['num']$_REQUEST['num'$num;
  10. $type = isset($_REQUEST&& is_array($_REQUEST&& isset($_REQUEST['type']$_REQUEST['type'$type;
  11. $imgtype = isset($_REQUEST&& is_array($_REQUEST&& isset($_REQUEST['imgtype']$_REQUEST['imgtype'$imgtype;
  12.  
  13. Image_Barcode::draw($num$type$imgtype);
  14.  
  15.  
  16. ?>

Documentation generated on Mon, 11 Mar 2019 14:21:07 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.