hola gente del foro del web, tengo un caso que me arroja este error:
Fatal error: Call to a member function consultaQuery() on a non-object in D:\AppServ\www\pro\index.php on line 6
en realidad le doy cabeza al asunto pero ni idea, soy nuevo en php, estoy con netbeans 6.7, me muestra mi tabla y todo en netbeans y que existe conexion y eso pero cuando ejecuto no es asi, y me sale ese error, aca les dejo el codigo a ver en que fallo.
<?php
class databas {
//put your code here
private $vServer="localhost";
private $vLogin="root";
private $vPassword="1234";
private $vDataBase="db_prueba";
public function conexionDataBas(){
$vConexion=mysql_connect($this->vServer,$this->vLogin,$this->vPassword) or die(mysql_error());
mysql_select_db($this->vDataBase,$vConexion)or die(mysql_error());
}
public function consultaQuery($consulta){
$vConex=mysql_connect($this->vServer,$this->vLogin,$this->vPassword)or die(mysql_error());
mysql_select_db($this->vDataBase,$vConex)or die(mysql_error());
$resultado=mysql_query($consulta,$vConex)or die(mysql_error());
}
}// fin class databas
?>
-------
<?php
include ('databas.php');
$iDB=new databas();
$iDB->conexionDataBas();
$sql="select * from cliente";
$con=$idb->consultaQuery($sql);
$fila=mysql_fecth_array($con);
echo "
<html>
<head>
<div><title><b><font size=\"3\">PruebaPHP</font><b></title></div>
</head>
<body>
<h1>BIENVENIDO AL SISTEMA DE PRUEBA</h1>
<p>
<p>
<table border=\"1\">
";
echo "<tr><td><b>NOMBRE</b></td> <td><b>APELLIDO</b></td></tr>
<tr><td>$fila[nombre_cliente]</td><td>$fila[apellido_cliente]</td></tr>
</table>
</body>
</html>";
?>
y al ejecutar esto me da:
Fatal error: Call to a member function consultaQuery() on a non-object in D:\AppServ\www\pro\index.php on line 6
una ayudita con esto por fis...