Gracias duck por tu respuest, he probado esto:
Código PHP:
Ver original<div class="round2">
<div class="round">Prueba<hr></div>
<?php
$host="192.168.0.100";
$user="testing" ;
$password="012";
$db="test";
$conn = oci_connect($user,$password, $host);
if (!$conn) {
$e = oci_error();
}
$stid = oci_parse($conn, "SELECT * FROM formulario");
oci_execute($stid);
while($row = oci_fetch_array($stid)){
$id= $row ["idestadoform"];
$marca= $row ["txtestado"];
echo("<table>\n");
echo("<tr>\n");
echo("<td>$id</a> </td>\n");
echo("<td>$marca</td>\n");
echo("</tr>\n");
echo("</table>\n");
}
?>
</div>
pero me sale este error:
Fatal error: Call to undefined function oci_connect() in C:\Program Files\EasyPHP-5.3.6.0\www\prueba.php on line 15
Sabrias porque peude ser?
Saludos y garcias nuevamente