I developed a PHP web app which interacts with MS SQL 2005 database. User will access my web and get some data they need in Excel format. I’ve done this with phpexcel extension.
However, now I need to save the query result in MS Access format (.accdb/.mdb) due to Ms Excel restriction for large file.
I could not find any Ms Access writer or any similiar things in the internet.
Any help would be appreciated.
Thanks
You could use PHP-ODBC or PHP’s PDO-ODBC either of these will access a system ODBC data source that you could point to your Access database. These is a good guide to this on W3Schools.com.