Júnior CB Posted March 12, 2012 Report Share Posted March 12, 2012 (edited) Olá amigos, estou iniciando em PHP e preciso utiliza junto com o Firebird, bom a questão é que neste script abaixo o print printa "ID;" e "NOME;" e não o conteudo do campo !Solicito a ajuda dos colegas !Obrigado !<?php$host = "localhost:D:/wamp/www/Site_Softcb/SOFTCB.FDB";$usu = "SYSDBA";$senha = "masterkey";$link = ibase_connect($host, $usu, $senha);$sql = "select * from ALUNOS";$r = ibase_query($link, $sql);?><table width="65%" border="1" align="center" cellpadding="0" cellspacing="0"><?php while($row = ibase_fetch_object($r)) { ?> <tr> <td width="101"> <? print $row->id; ?> </td> <td width="839"> <? print $row->NOME; ?> </td> </tr> <?php }ibase_close($link);?> </table> </body></html> Edited March 12, 2012 by Júnior CB Quote Link to comment Share on other sites More sharing options...
0 JaguA Posted March 13, 2012 Report Share Posted March 13, 2012 <tr> <td width="101"> <?php echo $row['id']; ?> </td> <td width="839"> <?php echo $row['NOME']; ?> </td> </tr> Quote Link to comment Share on other sites More sharing options...
Question
Júnior CB
Olá amigos, estou iniciando em PHP e preciso utiliza junto com o Firebird,
bom a questão é que neste script abaixo o print printa "ID;" e "NOME;" e não o conteudo do campo !
Solicito a ajuda dos colegas !
Obrigado !
<?php
$host = "localhost:D:/wamp/www/Site_Softcb/SOFTCB.FDB";
$usu = "SYSDBA";
$senha = "masterkey";
$link = ibase_connect($host, $usu, $senha);
$sql = "select * from ALUNOS";
$r = ibase_query($link, $sql);
?>
<table width="65%" border="1" align="center" cellpadding="0" cellspacing="0">
<?php while($row = ibase_fetch_object($r)) { ?>
<tr>
<td width="101"> <? print $row->id; ?> </td>
<td width="839"> <? print $row->NOME; ?> </td>
</tr>
<?php }
ibase_close($link);
?>
</table>
</body>
</html>
Edited by Júnior CBLink to comment
Share on other sites
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.