Advertisement
Guest User

Untitled

a guest
Dec 9th, 2011
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. <?php
  2. /**
  3. *
  4. * @ This file is created by deZender.Net
  5. * @ deZender (PHP5 Decoder for ionCube Encoder)
  6. *
  7. * @ Version : 1.1.3.0
  8. * @ Author : DeZender
  9. * @ Release on : 17.05.2011
  10. * @ Official site : http://DeZender.Net
  11. *
  12. */
  13.  
  14. ob_start( 'ob_gzhandler' );
  15. session_start( );
  16. include_once( 'conn.php' );
  17. include_once( 'libs/ez_sql_core.php' );
  18. include_once( 'libs/ez_sql_mysql.php' );
  19. $db = new ezSQL_mysql( $db_user, $db_pass, $db_name, $db_host );
  20.  
  21. if (!isset( $_SESSION['syuser'] )) {
  22. $_SESSION['syuser'] = 0;
  23. }
  24.  
  25. $ayar = $db->get_row( 'SELECT * FROM config where id=\'1\'' );
  26. $template = $ayar->theme;
  27. $language = $ayar->language;
  28. $lisans_anahtar = $ayar->license;
  29. require_once( 'libs/Smarty.class.php' );
  30. $smarty = new Smarty( );
  31. ............................
  32. ...................
  33. ........
  34.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement