The following shows no changes on the page at all, is it right? Or does the server not support PHP? I am an admin on the server at work, so I can install it if needed...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>news page feed</title>
</head>
<body>
<center>
<b>
<big>
Some place holder text
</big>
<br />
<br />
</b>
</center>
<center>
<TABLE BORDER="0" cellpadding="0" CELLSPACING="0">
<TR>
<TD WIDTH="1007" HEIGHT="624" BACKGROUND="images\background.jpg" VALIGN="top">
<br />
<big>
News Announcement!<br />
</big>
<br />
<?php
function file_input($newsfeed.txt)
{
$fo = fopen($newsfeed.txt, 'r');
$read = fread($fo, filesize($newsfeed.txt));
fclose($fo);
echo $read;
}
?>
<?php file_input('newsfeed.txt'); ?>
<br />
<big>
<A href="newsletters.htm">Access the monthly message</A><br />
<br />
<A href="ProductInfo.htm">Access the product info page</A><br />
<br />
</big>
</TD>
</TD>
</TR>
</TABLE>
</center>
<IMG SRC="images\logo.png" ALT="logo image" ALIGN=RIGHT>
<br />
<br />
<center>
<small>
If there are any problems regarding this site, broken links, typo's or you wish to add content etc etc, please <A href="mailto:myanus@butthole.com">email me</A>.
</small>
</center>
</body>
</html>