If you are not aware of www.phpclasses.org, then you might want to start there. There are a few classes that are in the DB group that you simply pass the SQL to the class and it does the query and creates the HTML for you. Very neat and tidy and easy to use. I use baagrid.php and here is an example of 'all' the code it takes to display the grid: mysql_connect('localhost', 'xxx', 'xxxx'); @mysql_select_db("scanner") or die ("Unable to select database"); $sqlstr="select * from golf"; $bd = new baaGrid($sqlstr); $bd->display(); That's it! Jim Hunter -------Original Message------- From: M.Feoli Date: Wednesday, March 24, 2004 03:14:56 PM To: php-windows@xxxxxxxxxxxxx Subject: I need to display records of a Database on html, Hi, I am rephrasing my last question, I have a database which I need to access via Web, and display multiple pages of the resulting records of the select statement I issue. Is there a code for this out there, which I could start with. thanks -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php .