Maybe it's just my eyes are sick of looking at it right now but I am missing something since I get a parse error. Here it is:
<?
if ($valid == "yes")
{
echo "
<head>
<title>Server Password Area</title>
</head>
<body>
<center>
<font color=\"black\" size=\"2\" face=\"verdana\">";
$filename = "/home2/drummerl/public_html/currentpass.txt";
$whattoread = @fopen($filename, "r") or die("Couldn't open file);
$file_contents = fread($whattoread);
----It says the parse error is the line below this (it ends at $filecontents</b>";---
$msg = "The current server password is: <b>$file_contents</b>";
fclose($whattoread);
echo "
$msg
...and more below but not needed to understand my problem. Any help? :/