Código PHP:
function consultaSql ( $sql = "" ) {
if ( $sql == "" ) {
$this -> Error = "No ha especificado una consulta SQL";
return 0;
}
//ejecutamos la consulta
$this -> Consulta_ID = @mysql_query( $sql, $this -> Conexion_ID );
if ( !$this -> Consulta_ID ) {
$this -> Errno = mysql_errno();
$this -> Error = mysql_error();
}
$campo = mysql_fetch_row( $this -> Consulta_ID );
//$this -> valor = $campo["$i"];
/* Si hemos tenido éxito en la consulta devuelve el identificador de la conexión, sino devuelve 0 */
return $this -> $campo;
}
Código PHP:
$novedades = $miconexion -> consultaSql ("Select * From libros Where activado = '1' order by hora desc, id limit 8");
Antes hacia:
Código PHP:
$novedades = mysql_db_query ($bd, "Select * From libros Where activado = '1' order by hora desc, id limit 8");
Espero me ayuden.
Gracias!!