Ver Mensaje Individual
  #2 (permalink)  
Antiguo 29/04/2006, 17:58
Avatar de ing_aprendiz
ing_aprendiz
 
Fecha de Ingreso: septiembre-2005
Mensajes: 136
Antigüedad: 18 años, 7 meses
Puntos: 0
Interbase Y Php

HOLA DE NUEVO SOY YO!!! RESULTA QUE YA NO SE QUE MAS HACER CON LA CONEXIÓN ESTOY TRATANDO DE HACER ALGO ASI :

<?
$link=@ibase_pconnect("C:\database\LAB.GDB","SYSDB A","masterkey");
echo "<TABLE WIDTH='100%' BORDER='1'>";
$Q = ibase_query("SELECT * FROM EXAMENES",$link);
while ($row = ibase_fetch_row($Q)) {
echo"<tr>";
echo"<td align='left' class='Estilo1'><b>codigo: </b></td>";
echo"<td align='left' class='Estilo2'>$row[0]</td>";
echo"</tr>";
echo"<tr>";
echo"<td align='left' class='Estilo1'><b>nombre: </b></td>";
echo"<td align='left' class='Estilo2'>$row[1]</td>";
echo"</tr>";
}
echo '</TABLE>';

?>

PERO NADA ME SALE QUE TENGO QUE HACER COMO SE CONECTA si le quito el arroba @ibase_pconnect causa problema... además no se como se coloca cual es el servidor o eso no importa... ayudenme por favor es urgente!!!!!