Advertisement
Guest User

Untitled

a guest
Nov 30th, 2013
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. <?php
  2. /**
  3. *
  4. * @ This file is created by deZender.Net
  5. * @ deZender (PHP5 Decoder for Zend Encoder/SafeGuard & PhpExpress)
  6. *
  7. * @ Version : 1.1.6.0
  8. * @ Author : DeZender
  9. * @ Release on : 02.06.2013
  10. * @ Official site : http://DeZender.Net
  11. *
  12. */
  13.  
  14. set_time_limit( 300 );
  15. require_once( 'conn.php' );
  16. require_once( 'config.php' );
  17. require_once( 'gps.php' );
  18. $_MENU = 'report';
  19. $_TITLE = LG_AD1_Chart;
  20. $chart_name = $_TITLE;
  21. $chart_key = 1;
  22. $chart_unit = '';
  23. $chart_min = 0;
  24. $chart_max = 100;
  25.  
  26. if (isset( $_GET['uin'] )) {
  27. $uin = tep_db_prepare_input( $_GET['uin'] );
  28. $sql = 'select * from gps_product where gp_uin = \'' . tep_db_input( $uin ) . '\'';
  29. $db_product = new DbClass( $sql );
  30.  
  31. if (!$db_product->fetch_array( )) {
  32. echo 'Please select a tracker.';
  33. exit( );
  34. }
  35. ................................................................................
  36. ..................................................
  37. ...................
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement