I have an RTF file that I want to display inside a web page after tags have been replaced with user input.
I would like to be able to display the RTF file without
You can't just output a file from within PHP code. You need to extract the data from it, then print the contents inline.
The php function 'file_get_contents' may do what you need. The functions manual is here: http://us2.php.net/filegetcontents
A sample usage is here:
$contents = file_get_contents('yourfile.rtf');