I keep getting an unexpected$end parse error on line 32, but that line doesn't exist. I can't seem to find what is causing the problem. This is driving me crazy.
<!doctype html public "-//W3C//DTD HTML 4.0 //EN">
<html>
<head>
<title>Your Output</title>
</head>
<body>
<h1>Your Output</h1>
<center>
<?
$basicText = $_REQUEST["basicText"];
$borderSize = $_REQUEST["borderSize"];
$borderStyle = $_REQUEST["borderStyle"];
$sizeType = $_REQUEST["sizeType"];
$theStyle = <<<HERE
"border-width:$borderSize$sizeType;
border-style:$borderStyle;
border-color: green;"
HERE;
print "<div style = $theStyle>";
print $basicText;
print"</span>";
?>
</center>
</body>
</html>