Re: [PHP-DB] another PHP Sql question...
by jsWalter other posts by this author
Aug 29 2003 7:46AM messages near this date
RE: [PHP-DB] another PHP Sql question...
|
RE: [PHP-DB] Beta 2 of plPHP released.
> "Boaz Yahav" <berber@[...].il> wrote in message
> I'm not sure i understand the problem.
> a,c,e come from one query result and b,d,f from another?
No, they all come from the same table, but the same field name but from
different rows of the database.
> If it's all from the same query why not do :
>
> reult=mysql_query(".....
> <TABLE>
> While($row = mysql_fetch_object($result)) {
> Echo"<TR><TD>$row->feild_A</TD><TD>$row->feild_B</TD></TR>";
> }
> </TABLE>
This method does not grap data from 2 rows at atime.
I examined my example and noticed I goofed, it should have read...
...
<tr>
<td> row_1/field_A</td>
<td> row_2/field_A</td>
</tr>
<tr>
<td> row_3/field_A</td>
<td> row_4/field_A</td>
</tr>
Same field, but diffeent rows.
Sorry for the confusion.
Walter
--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Thread:
Boaz Yahav
jsWalter
|