nada tampoco dentro de mi local puse una carpeta llamada db y dentrola base de datos y mira lo que dice:
Código PHP:
Warning: InterBase: I/O error for file "/db/factunet.gdb" Error while trying to open file El sistema no puede hallar la ruta especificada. in C:FoxServwwwconecta.php on line 19
Warning: ibase_query(): no InterBase link resource supplied in C:FoxServwwwconecta.php on line 20
codigo descripcion familia categoria
Warning: ibase_fetch_row(): supplied argument is not a valid InterBase result resource in C:FoxServwwwconecta.php on line 32
Warning: ibase_free_result(): supplied argument is not a valid InterBase result resource in C:FoxServwwwconecta.php on line 38
te dejo lo que tengo en el php
Código PHP:
<?php
ibase_pconnect('localhost:/db/mybase.gdb',"SYSDBA","masterkey");
$result=ibase_query('mybase.gdb',"select * from articulos");
?>
</div>
</h1>
<table width="426" border="1" align="center" class="Textoblueb" bordercolor="#888AB0"cellspacing="0"><tr>
<th class="normal">codigo</th>
<th class="normal">descripcion</th>
<th class="Textoblueb">familia</th>
<th>categoria</th>
</tr>
<?
//Mostramos los registros
while ($nrow=ibase_fetch_row($result))
{
echo '<tr><td align="center" class="Texto" >'.$nrow["codigo"].'</td>';
echo '<td align="center" class="Texto">'.$nrow["descripcion"].'</td>';
echo '<td align="center" class="Texto">'.$nrow["familia"].'</td>';
}
ibase_free_result($result);
?>