11/04/2014, 11:30
|
| | Fecha de Ingreso: agosto-2008
Mensajes: 46
Antigüedad: 16 años, 3 meses Puntos: 0 | |
Respuesta: Cómo llenar una lista desplegable con PHP de una CONSULTA a ORACLE Cita:
Iniciado por h2swider Solo para guiarte, alguna de las funciones que seguramente necesitaras...
Código PHP:
Ver original$sql = "query"; $stid = oci_parse($conexion, $sql); oci_execute($stid); while ($row = oci_fetch_array($stid, OCI_ASSOC + OCI_RETURN_NULLS)) { $arreglo[] = $row; }
No me funciona !!! |