git-svn-id: https://192.168.0.254/svn/Proyectos.Incam_Intranet/trunk/src@1 e2b1556b-49f8-d141-9351-52d6861a72d9
33 lines
556 B
PHP
33 lines
556 B
PHP
<?php
|
|
|
|
class ConexionBackup{
|
|
|
|
private $link;
|
|
|
|
private $bd = "localhost";
|
|
|
|
private $user = "root";
|
|
|
|
private $password = "0selfor0";
|
|
|
|
private $nombre_bd = "selfor";
|
|
|
|
public function ConexionBackup(){
|
|
$this->link=mysql_connect($this->bd,$this->user,$this->password);
|
|
if (!mysql_select_db("information_schema",$this->link)){
|
|
|
|
}
|
|
mysql_query("SET NAMES 'latin1'");
|
|
}
|
|
|
|
public function getNombreBD(){
|
|
return $this->nombre_bd;
|
|
}
|
|
|
|
public function getLink(){
|
|
return $this->link;
|
|
}
|
|
}
|
|
|
|
?>
|