Posted by ZeldorBlat on 11/11/27 11:30
Use include() to parse the file and capture the output with output buffering. For instance: ob_start(); include 'myfile.php'; $output = ob_get_contents(); ob_end_clean(); //discard the buffer since we already have the contents echo htmlentities($output);
[Reply to this message]
Copyright © 2005-2006 Powered by Custom PHP Programming