ASPN ActiveState Programmer Network
ActiveState
/ Home / Perl / PHP / Python / Tcl / XSLT /
/ Safari / My ASPN /
Cookbooks | Documentation | Mailing Lists | Modules | News Feeds | Products | User Groups


Recent Messages
List Archives
About the List
List Leaders
Subscription Options

View Subscriptions
Help

View by Topic
ActiveState
.NET Framework
Open Source
Perl
PHP
Python
Tcl
Web Services
XML & XSLT

View by Category
Database
General
SOAP
System Administration
Tools
User Interfaces
Web Programming
XML Programming


MyASPN >> Mail Archive >> php-db
php-db
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

Privacy Policy | Email Opt-out | Feedback | Syndication
© ActiveState Software Inc. All rights reserved