Re: [PHP] HTML in PHP

2002-04-28 Thread Miguel Cruz
On Sun, 28 Apr 2002, Christian Ista wrote: > for ($i = 0; $i { >echo mysql_result($result,$i, "NAME"); > } > ?> > > Could you tell me how I can do to have a after each row. Two options: { echo mysql_result($result,$i, "NAME") . ''; } or: { echo mysql_result($r

Re: [PHP] HTML in PHP

2002-04-28 Thread Andrew Brampton
echo mysql_result($result,$i, "NAME"); should be: echo mysql_result($result,$i, "NAME") . ''; Andrew - Original Message - From: "Christian Ista" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, April 28, 2002 2:51 PM Subjec

[PHP] HTML in PHP

2002-04-28 Thread Christian Ista
Hello, I have a newbie question for you. I do a query, I'd like to display the result but I'd like to go to a new line for each row. I use this code that's work : but this not work } ?> Could you tell me how I can do to have a after each row. Thanks for your help :) Bye