Advertisement
Guest User

conexao.class.php

a guest
Aug 6th, 2014
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. <?php
  2. class conexao {
  3. private $conexao;
  4. public function __construct() {
  5. $banco_hostremoto = "127.0.0.1";
  6. $banco_hostname = "localhost";
  7. $banco_usuario="root";
  8. $banco_passwd="";
  9. $banco_nome="flptrevisan";
  10. $this->conexao = new mysqli($banco_hostname,$banco_usuario,$banco_passwd,$banco_nome);
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement