i have a problem, where all the code seams simple & proper. hte error says:
"Parse error: parse error in /home/aslan/public_html/multiply.php on line 25"
here is the code:
<head>
<title>MULTIPLY</title>
</head>
<body>
<h1>MULTIPLY</h1>
<hr>
<?php
print "<table border=1>\n";
for ( $y=1; $y<=12; $y++ )
{
print "<tr>\n";
for ( $x=1; $x<=12; $x++ )
{
print "\t<td>";
print ( $x*$y );
print "</td>\n";
}
print "</tr>\n;
}
print </table>;
?>
</body>
like i said it all looks simple.
any help would be great.
D