Re: [PHP] Populating textboxes and listboxes from a query result of a database table

2002-12-26 Thread Gerald Timothy Quimpo
On Thursday 26 December 2002 06:59 am, Rick Emery wrote: > Text box: > print "\n"; i prefer to use templates. i use my own template code, but there are good template systems online that you can use, e.g., http://smarty.php.net is powerful. in a simple template system, assume that there is a fi

Re: [PHP] Populating textboxes and listboxes from a query result of a database table

2002-12-26 Thread Rick Emery
Text box: print "\n"; List box: print "\n"; while($row = mysql_fetch_array($result)) { extract($row); print "$data_title\n"; } print "\n"; - Original Message - From: "Denis L. Menezes" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, December 26, 2002 6:13 AM Subject: [PHP]