Advertisement
Guest User

Untitled

a guest
Aug 11th, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. <?php
  2. session_start();
  3. header("Content-Type: text/html; charset=utf-8");
  4. ini_set("default_charset", 'utf-8');
  5. //error_reporting(0);
  6.  
  7. /////////////////////
  8. function __autoload($classe)
  9. {
  10. include_once'Classi/'.strtolower($classe).'.php';
  11. }
  12. $sistema = New Sistema();
  13. $mysql = New MySQL();
  14. $accesso = New Accesso();
  15.  
  16. // MYSQL
  17. Class config
  18. {
  19. const host = '127.0.0.1';
  20. const username = 'root';
  21. const db_name = 'hspace';
  22. const password = 'JAZ_Axz29';
  23. }
  24. $config = new config;
  25.  
  26. // SITO
  27. $path = 'https://airsplix.ga/';
  28. $url = 'airsplix.ga';
  29. $facebook = 'AirSplix';
  30.  
  31. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement