I am trying to use the include function which have used successfully many times. I can get it to work when the included .php file is in the same directy as the index.php file that calls it. But as soon as I try and call the file from another directory, it simply doesnt show up.
This works (up4.php is in the same directory as the index)
<php
include ("up4.php");
?>
This doesn't work (up4.php is located at http://www.chumpchange.org/main/Updates/up4.php)
<?php
include ("http://www.chumpchange.org/main/Updates/up4.php");
?>
I have tried changing everything and I still cannot get it to work, I think its a problem with the sever because a lot of directory related stuff isnt working properly.