Do some of you have information which you need to pull from one site to another? For example information from a MySQL Database? Well, I found this little trick that will help a lot!
Code:
<?php
// The page you wish to pull the data from
$lines = file('http://www.yourdomain.com/index.html');
// Display the code
foreach ($lines as $line_num => $line) {
echo $line;
}
?>
Hope it help!