You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

32 lines
1.3 KiB

  1. <?php
  2. if (!defined('IN_CB')) { die('You are not allowed to access to this page.'); }
  3. ?>
  4. <div class="output">
  5. <section class="output">
  6. <h3>Output</h3>
  7. <?php
  8. $finalRequest = '';
  9. foreach (getImageKeys() as $key => $value) {
  10. $finalRequest .= '&' . $key . '=' . urlencode($value);
  11. }
  12. if (strlen($finalRequest) > 0) {
  13. $finalRequest[0] = '?';
  14. }
  15. ?>
  16. <div id="imageOutput">
  17. <?php if ($imageKeys['text'] !== '') { ?><img src="image.php<?php echo $finalRequest; ?>" alt="Barcode Image" /><?php }
  18. else { ?>Fill the form to generate a barcode.<?php } ?>
  19. </div>
  20. </section>
  21. </div>
  22. </form>
  23. <div class="footer">
  24. <footer>
  25. All Rights Reserved &copy; <?php date_default_timezone_set('UTC'); echo date('Y'); ?> <a href="http://www.barcodephp.com" target="_blank">Barcode Generator</a>
  26. <br /><?php echo $code; ?> PHP5-v<?php echo $codeVersion; ?>
  27. </footer>
  28. </div>
  29. </body>
  30. </html>