I need some help on why I cant get these numbers to show from the array when i Run it
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type"
content="text/html; charset=iso-8859-1" />
<meta name="author" content="Revised by josephr10"/>
</head>
<body>
<?php
$RatesArray = array(.0525;,.0550;, .0575;, .0600;, .0635;, .0650;, .0675;)
echo "<p> The interest rates are:</p><br />"
echo $RatesArray[0]<br />;
echo $RatesArray[1]<br />;
echo $RatesArray[2]<br />;
echo $RatesArray[3]<br />;
echo $RatesArray[4]<br />;
echo $RatesArray[5]<br />;
echo $RatesArray[6]<br />;
?>
</body>
</html>