Don't use short tags, before you advise someone about using PHP, you should learn how it should be used.
HTTP includes - just don't bother, use file_get_contents..
Short tags basically means don't just do <? add "php" to the start tag, short tags are disabled on a lot of servers, they also interfere with XML, also the alternative to using short tags is proven faster.PHP Code:<?php
$site = file_get_contents( "http://www.lol.com/testicals.php" );
echo $site;
?>


Reply With Quote





