Guest User

Untitled

a guest
Apr 20th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. <?php
  2.  
  3. class Conexion {
  4. private $host = "localhost";
  5. private $user = "root";
  6. private $pass = "";
  7. private $bd = "nutricion";
  8. private $con;
  9. public function Conectar() {
  10. $this->con = mysqli_connect($this->host, $this->user) or die("Error al conectar al Servidor");
  11. mysql_select_db($this->bd, $this->con) or die("Ha ocurrido un Error al conectar a la Base de Datos");
  12. }
  13. }
  14.  
  15. ?>`
Add Comment
Please, Sign In to add comment