I am currently trying to use the php function \'include\' to include an external url. This is so that whenever the webpage is updated it will automatically update mine. The
You would be better using echo file_get_contents($url) as the include statement could execute any PHP code returned by the other site.
echo file_get_contents($url)