Hi Everyone,
I'm a PHP newbie (but learning fast!) and have a sticky situation. First, some background:
I was asked to write a small database app (4 users) at work and told to use Access 2000 for the front end. The database is to hold patches from our development group, small examples of code usage (in a zip file), Readme files, text descriptions for the patch or sample, platform info, etc.
Part of our process is to store these patch/example files on a network server, so I decided to just use OLE links to the files in the DB rather than store the whole file.
Performance of Access was not what we had hoped, so I used the MS Upsizing Wizard to put the tables on SQL Server 7. It works great, Access is still used as the front end.
For my own learning and for ease of use, I want to put a webified front end on it as well and I've chosen PHP as the language to implement in (natch, or I wouldn't be here, eh?).
My problem is with those OLE links. I really need some advice how to handle them. If I just do a select on those 3 columns, I get ASCII gobledygook back (which I would expect).
-- Is the answer to just show a "download file"-type link on the page then use one of the file download scripts I've seen here?
-- If so, how do I get the file name?
-- What about uploading files for the data entry page (remember, the files live on a different machine than the web server).
Thanx in advance for any insights! 🙂.
MikeB