Quote:
|
Originally Posted by Nick_D
I want to know if it is possible to use an Excel file online as a database.
|
Yes, there are many ways to do this but you have to ask yourself some questions to decide which is the best way for you. If you have just a few remote users that need access to the data and you do not want to get into an involved programming effort then you could use something like
http://www.badblue.com to provide direct access to the Excel file from a PC.
* You could direct access the Excel file with ODBC but you'd need the drivers available on the server to do this, not likely with a shared host. * There are several PHP Classes built to interact with Excel files. Search on
http://www.phpclasses.org/ I haven't tried any of these. * You could devise an export of the excel data to CSV files then use the data in Flat file system, import to MySQL or other DB. * You could use MySQL database Management program like
SQLyog to maintain and import data from Excel or CSV.
Any of these paths are going to require a level of technical ability and time to implement and maintain.