Re: [PHP-DB] Creating a Table to line query results in php?

2007-02-25 Thread Chris
Scott wrote: ThanksI was trying to do that but was not working for me. I think I was over thinking it. The obvious is never obvious :) On 2/25/07, Matt Anderton <[EMAIL PROTECTED]> wrote: why not just create a table? echo "\n"; echo "ImageNameEffectCategoryOrigin\n"; while ($data = mys

Re: [PHP-DB] Creating a Table to line query results in php?

2007-02-25 Thread Scott
ThanksI was trying to do that but was not working for me. I think I was over thinking it. The obvious is never obvious :) On 2/25/07, Matt Anderton <[EMAIL PROTECTED]> wrote: why not just create a table? echo "\n"; echo "ImageNameEffectCategoryOrigin\n"; while ($data = mysql_fetch_array($r

Re: [PHP-DB] Creating a Table to line query results in php?

2007-02-25 Thread Chris
Scott wrote: Hi everyone! How can I create a table...or even something similar...to line information up? Use a table? http://www.w3schools.com/html/html_tables.asp -- Postgresql & php tutorials http://www.designmagick.com/ -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, v

[PHP-DB] Creating a Table to line query results in php?

2007-02-25 Thread Scott
Hi everyone! How can I create a table...or even something similar...to line information up? The information is coming from an mysql database and there are 5 columns of data. Of course I am using php to call the data out of the database. A simple example: while ($data = mysql_fetch_array($res)