See, that's what I thought.
Include does not do what you think it does.
Include allows you to access the functions and modules contained within another PHP script.
If the script "myfunctions.php" contains a function called, say "createworldpeace", then your website would do this:
index.php
<?php
include "myfunctions.php";
// do other stuff
$a=createworldpeace();
// do other stuff
?>
Anyway, that's NOT what you need here. What you need is to grab the contents of a file and insert it into your website.
There are several ways to do this. The most strongly recommended way is to set up a MySQL database on your web account and put the data in there and then pull it out and put it into your website.
As a beginning web designer, you might find it easier to start out using INI files as I did.
Please see the attached file. I'll probably get burned at the stake for posting this because I have slightly modified an existing EXCELLENT script written by jorgen to give it some more functionality. Full props to him, I only added a couple lines and wrote a help file.
So to use this script, just add it at the top of your file like:
<?php
require "inifunctions.php";
?>
and then retrieve information from the INI file with the functions provided.