[PHP] Show data in two columns

2005-04-26 Thread Amir Mohammad Saied
Hi, i want to extract the data from my DB (it's an articles database) and want to show them in 2 columns way, like zend.com's articles section, could any one help me? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Show data in two columns

2005-04-26 Thread Chris Ramsay
Looks like they've done something like the following: while (row = data output from db) { print the following: tabletr td width=50% tabletrtdrow1/td/tr/table tabletrtdrow2/td/tr/table tabletrtdrow3/td/tr/table /td td width=50% tabletrtdrow4/td/tr/table tabletrtdrow5/td/tr/table

Re: [PHP] Show data in two columns

2005-04-26 Thread Richard Lynch
On Tue, April 26, 2005 3:11 am, Amir Mohammad Saied said: i want to extract the data from my DB (it's an articles database) and want to show them in 2 columns way, like zend.com's articles section, could any one help me? Do you want them in column order or row order? (left-right or up-down)