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
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
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