View Single Post
Old Nov 26th, 2007, 9:24 PM   #2
Sane
Programming Guru
 
Sane's Avatar
 
Join Date: Apr 2005
Location: Waterloo, Ontario
Posts: 1,886
Rep Power: 5 Sane will become famous soon enough
Send a message via MSN to Sane
Re: text files auto imported into fields

You shouldn't need any software. It's a fairly simple task to do in any server-side scripting language. You can probably find snippets for it all around the Internet.

For example, in PHP... open the file with $my_string = file_get_contents("my_file.txt"), read it in line by line, then split each line into an array of fields with $fields = explode(",", $line), then display it however you feel.
Sane is offline   Reply With Quote