Forum Moderators: coopster
<?php
echo "hello world";
?>
I have never seen an include used like this before
It "works," it does output the ad, but outputs an "output headers already sent" immediately after the ad. I looked into the code, and sure enough, it outputs a header.
An interesting thing I caught from the docs was that when you include using a url, if the url is on a remote server it will only return the output already processed on that server. That is, the remote server does the processing, not the local one. So I'm guessing that also, when you include on the same server, it's doubling the PHP processing time. But in this case it looks like they did that because it's the only way they could get it to work.