Skip to content

Commit

Permalink
Make example about the right package
Browse files Browse the repository at this point in the history
  • Loading branch information
CloCkWeRX committed Dec 11, 2011
1 parent 349ad19 commit bad907e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/examples/barcode_img.php
@@ -1,11 +1,11 @@
<?php

require_once("Image/Barcode.php");
require_once "Image/Barcode2.php";

$num = isset($_REQUEST['num']) ? $_REQUEST['num'] : '15101967';
$type = isset($_REQUEST['type']) ? $_REQUEST['type'] : 'int25';
$imgtype = isset($_REQUEST['imgtype']) ? $_REQUEST['imgtype'] : 'png';

Image_Barcode::draw($num, $type, $imgtype);
Image_Barcode2::draw($num, $type, $imgtype);


?>

0 comments on commit bad907e

Please sign in to comment.