<?
$host="localhost";
$user="pepito";
$pwd="1234";
$bd="bd1";
?>
Luego en los otros archivos php incluyo este erchivo y para conectar a la base de datos hago esto:
Código PHP:
$objConn=new conectarMySQL($host,$user,$pwd,$bd);
Código PHP:
function insertar($table,$postVars,$objConn){
$objConn->xxxx
$objConn->xxxx
return xxx
}
class cript{
var $nombre;
var $password;
function check_user(){
$this->objConn=new conectarMySQL("server","pepito","1234","bd1");
$this->objConn->conectar();
$query="select idUser from tb_user where";
$query=$query." usr ='".$this->nombre."' and pwd= '".$this->password."'";
$this->objConn->consultar($query);
Muchas gracias desde ya