[PHP-DB] Re: How to build a dinamic link...

2004-12-29 Thread Daniel A. Betancourt
Hi Frank: Thank“s for answering. >I assume you can run the query and display the results Yes, I can run the query very well. >- so the only exotic thing here is: > >while ($row = mysql_fetch_array($result)) >{ >print "" . $row["title"] . >""; >} > >This will produce a list of titles (in tab

[PHP-DB] Re: How to build a dinamic link...

2004-12-27 Thread Frank M Flynn
Hola, I think what you want would be like this: Let's say your table has these fields: id, title, authorID, category and article (which is the text). so the first query might be - SELECT id, title, category FROM myTable WHERE authorID = $myID and you want to know how to present a list of h