[PHP] Re: use php to download mysql table

2004-09-18 Thread M. Sokolewicz
try: header('Content-type: application/vnd.ms-excel'); echo ''; $result = mysql_query('...'); while($row = mysql_fetch_array($queryResult)){ echo ''; foreach($row as $cell) { echo ''.$cell.''; } echo ''; } echo ''; exit; ?> Amc wrote: Hi, Does anyone have any sample code that wil

[PHP] Re: use php to download mysql table

2004-09-18 Thread zerof
Amc wrote: Hi, Does anyone have any sample code that will download a mysql table to an excel file? Thanks - http://www.dbtools.com.br/ - zerof -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php