Advertisement
virgulinoDouglas

Config.class.php

Jan 30th, 2019
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. <?php
  2.  
  3. Class Config{
  4.  
  5. //INFORMÃÇÕES BÁSICAS DO SITE
  6. const SITE_URL = "http://localhost";
  7. const SITE_PASTA = "loja";
  8. const SITE_NOME = "PHP 7 e Mysqli";
  9. const SITE_EMAIL_ADM = "alterar@gmail.com";
  10. const BD_LIMIT_POR_PAG = 6;
  11. const SITE_CEP = '31535522';
  12.  
  13.  
  14. //INFORMAÇÕES DO BANCO DE DADOS
  15. const BD_HOST = "localhost",
  16. BD_USER = "root",
  17. BD_SENHA = "",
  18. BD_BANCO = "BANCODADOS",
  19. BD_PREFIX = "DV_";
  20.  
  21.  
  22. //INFORMAÇÕES PARA PHP MAILLER
  23. const EMAIL_HOST = "smtp.gmail.com";
  24. const EMAIL_USER = "alterar@gmail.com";
  25. const EMAIL_NOME = " Loja";
  26. const EMAIL_SENHA = "SENHA";
  27. const EMAIL_PORTA = 587;
  28. const EMAIL_SMTPAUTH = true;
  29. const EMAIL_SMTPSECURE = "tls";
  30. const EMAIL_COPIA = "lojavirtualfreitas@gmail.com";
  31.  
  32.  
  33.  
  34. }
  35. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement