api/actividadeswp/v3/inc/db.php

30 lines
765 B
PHP

<?php
class Database{
// specify your own database credentials
private $host = "localhost";
private $db_name = "wp3620139";
private $username = "wpuser28437";
private $password = "etO7qDpg7YaPmAS";
public $conn;
// get the database connection
public function getConnection(){
$this->conn = null;
try{
$this->conn = new PDO("mysql:host=" . $this->host . ";dbname=" . $this->db_name, $this->username, $this->password);
$this->conn->exec("set names utf8");
}catch(PDOException $exception){
echo "Connection error: " . $exception->getMessage();
}
return $this->conn;
}
public function closeConnection(){
$this -> conn = null;
}
}