Many years ago I was the supervisor for a series of projects that developed advanced search capabilities on a database of about 60,000 documents (mostly text documents several pages long). We used ASP/Visual Basic on MS Access and Sql Server databases - both web-based and stand-alone. I would now like to do something similar with PHP and MYSQL (web-based). I have been playing a bit with it with some success, but before investing more resources in this, I just want to step back and rethink the design.
Then we used frames – four frames on an index.html page with a
- search form frame,
- an output to summary table frame,
- a full document text frame, and
- a frame with some menu options, etc.
The workflow was to do the search, click on a link in the results table (document number), and then the full document associated with the link would appear in the full text frame. Pretty efficient and clean – everything was visible on the same page, easy to change the search parameters and see the results, etc
But frames have been out of fashion for some time and I am wondering if there is a better way to achieve a similar result. Although I have been able to get some results with frames using PHP and MYSQL, it gets a little awkward posting the variables between pages, etc. Any suggestions on how to go about the design and planning would be greatly appreciated.
Then I can get down to working out the code and will need some help with that since I am new to both PHP and MYSQL. Thanks in advance for any help you can provide. - Dave