How to Implement Web Based Find File Database Via Text Search
Posted
by neversaint
on Stack Overflow
See other posts from Stack Overflow
or by neversaint
Published on 2010-04-20T06:00:46Z
Indexed on
2010/04/20
6:13 UTC
Read the original article
Hit count: 235
I have series of files like this:
foo1.txt.gz
foo2.txt.gz
bar1.txt.gz
..etc..
and a tabular format file that describe those files:
foo1 - Explain foo1
foo2 - Explain foo2
bar1 - Explain bar1
..etc..
What I want to do is to have a website with a simple search bar and allow people to type
foo1
or just foo
and finally return the gzipped file(s) and the related explanation of the file(s).
What's the best way to implement this and what kind of tools should I use. Sorry I am totally new in this area.
© Stack Overflow or respective owner