No, Matt's right, the functions don't output anything.
Thanks for the reply Matt. I used your function, but all I get is:
<htm><body></body></html>
Am I missing something. Here's my EXACT CODE:
function get_file_data($url) {
ob_start();
include($url);
$output = ob_get_contents();
ob_end_clean();
return $output;
}
$showlist = "http://phatphiles.org/xml/showlist.txt";
get_file_data($showlist);
That's the entire page - there's no HTML wrapper yet. Just what you see plus start and end PHP tags.