Hey i want to convert MsWord doc file into text file - any code sample. And then i want to store it to in database MySql - any code. And also how to retrieve it in a same format tht was in Msword file using php joomla
views:
122answers:
1
A:
Regarding MS Word files:
- DOC files are single binary files
- DOCX files are packages (something like ZIP files containing an XML manifest and multiple binary files).
You would waste a lot of valuable database space storing binary files into blobs.
It may be easier to store the files into a filesystem directory and record the path to the directory in MySQL.
David
2010-03-27 08:39:08