I am attempting to use the implode command to bring in HTML for display.
$html_out=implode('',file('http:/somewhere/some.cgi'));
print "$html_out";
This code works fine when accessing a cgi that is external to my own web server; however when I try to pull in an internal script and its output (using the http: address), it prints only blank space. I am relatively new with PHP coding and would appreciate any help.