I need to populate a <textarea> with content from a flat text file. Normally this is easily done with the 'include' command. But this text file contains PHP code, specifically the "<?php" and "?>" syntax, so PHP attempts to parse it and everything falls apart.
I can get around this by opening the text file and manually 'fgetting' each line and dumping it into the textarea, but I'm wondering if there's an easier way. Some alternate to 'include' that instructs PHP to just include the contents of the file without attempting to parse it?