Buenas tardes.
Estoy realizando una consulta desde PHP a oracle 11g donde si me conecta correctamente pero en el resultado de la consulta me muestra el siguiente error:
Warning: htmlentities() expects parameter 1 to be string, object given in
y a continuación del error la consulta correctamente.
incluyo el código:
Código PHP:
<?php
$conn = oci_connect('usuario', 'contraseña', 'bbdd', 'AL32UTF8');
if (!$conn) {
$e = oci_error();
trigger_error(htmlentities($e['message'], ENT_QUOTES), E_USER_ERROR);
}
$stid = oci_parse($conn, "SELECT * FROM mi_tabla");
oci_execute($stid);
echo "<table border='1'>\n";
while ($row = oci_fetch_array($stid, OCI_ASSOC+OCI_RETURN_NULLS)) {
echo "<tr>\n";
foreach ($row as $item) {
echo " <td>" . ($item !== null ? htmlentities($item, ENT_QUOTES) : " ") . "</td>\n";
}
echo "</tr>\n";
}
echo "</table>\n";
?>
Gracias, un saludo.