i am using this an i get error
Parse error: parse error, unexpected T_ECHO, expecting ',' or ';' in /home/itunes/public_html/photography/admin.php on line 6
some other errors i will get when i fix 1 is
Parse error: parse error, unexpected T_ECHO, expecting ',' or ';' in /home/itunes/public_html/photography/admin.php on line 5
and
Parse error: parse error, unexpected T_ECHO, expecting ',' or ';' in /home/itunes/public_html/photography/admin.php on line 4
here is my code
<?php
$version = trim(file_get_contents("version.txt"));
if ($version=="1.0")
echo "<h1>version information<h1>";
echo "<font color="#66CC00">";
echo "version up is to date";
echo "</font>";
else
echo "<font color=#FF0000>";
echo "<h1>version information<h1>";
echo "Your version is not up to date the current version is {$version} to download this version";
echo "</font>";
?>
hope you can fix this