Pruebalo asi:
Código PHP:
// constructor
function MySQL() {
$this->user = 'root';
$this->password = 'root';
$this->dbSelected = 'proyecto_ds1';
$this->server = 'localhost';
}
// conectar con el server
function conectar() {
$this->link = mysql_connect($this->server, $this->user, $this->password);
if (!$this->link) {
print "Error en la conexion:" . mysql_error();
return false;
}
if (!(mysql_select_db($this->dbSelected, $this->link))) {
print "Error al seleccionar base de datos: " . mysql_error();
return false;
}
}