[PHP-WIN] text file parsing

2002-10-25 Thread Max Graham
There are a couple of ways to do this, depending on what you're looking to accomplish. One involves treating the contents of the text file as literal text, not as HTML. This comes directly from the manual, under the get_html_translation_table() function. Here's a quick copy & paste: $trans = get_h

Re: [PHP-WIN] text file parsing

2002-10-24 Thread Luis Ferro
Bryan Luisana wrote: Hello, I have only been working with php for about 2 hours now so bare with me if I type something stupid. I am trying to open up a remote text file, parse the file, and output the parsed text as html. As of now I can open the file read characters into a buffer and then ou

[PHP-WIN] text file parsing

2002-10-24 Thread Bryan Luisana
Hello, I have only been working with php for about 2 hours now so bare with me if I type something stupid. I am trying to open up a remote text file, parse the file, and output the parsed text as html. As of now I can open the file read characters into a buffer and then output them as html. My