BELOW IS PHP CODE
GETTING PARSE ERROR AT LINE #16
<html>
<head>
<title>table php file</title>
<?php
$times=2;
if(isset($_POST["submit1"]))
{
$start=$_POST["txtStart"];
$end=$_POST["txtEnd"];
$times=$_POST["txtTimes"];
for($start;$start<=$end;$start++)
{ $answer= $start * $times;
print($start. "multiplied by" .$times. "=" .$answer.) ;
}
}
?>
</head>
<body>
<form name="form1" method="post" action="table.php" size=15>
Start-Number:<input type="text" name="txtStart" value="1" size=15>
End-Number:<input type="text" name="txtEnd" value="10">
Answer<input type="text" name="txtTimes" value=<?php print $times; ?>>
<P>
<input type="submit" name="submit1" value="Answer">
<P>
</form>
</html>