IM HAVING TROUBLE WITH PHP?

Here is my php script


<!-- left menu -->
<div style='position:absolute; left:0px;'</div>
<fieldset style="border:2px solid gold; background: url(http://i1261.photobucket.com/albums/ii586/jacob1899/BlackCrumple1_zps96228b90.jpg);;" ><legend style="color: #f0f8ff; background: url(http://i1261.photobucket.com/albums/ii586/jacob1899/BlackCrumple1_zps96228b90.jpg) ;padding: 2px;border: 3px dotted Red;">MENU</legend>
<font color="00ffff">
<br>
<?php
session_start();
require_once("connect.php");
// Check his status.
if (!empty($_SESSION['username'])) // he got it.
{
echo "You are currently logged in, <b>$_SESSION[username]</b>.";
}
else // bad info.
{
echo "
<a style='text-decoration: none;' href='/L0gin'>Login</a> Down Below (Or <a style='text-decoration: none;' href='/Reg1ster'>Register</a>)
<form id='login' action='login.php' method='post'>
Username: <input type='text' name='username' id='username' maxlength='25'/><br>
Password: <input type='text' name='password' maxlength='35'/><br>
<input type='submit' value='Login!'/>.";
}

?>
</font>
<hr>
</div>
<!-- Right Menu -->
<div style='position:absolute; right:0px;'</div>
<fieldset style="border:2px solid gold; background: url(http://i1261.photobucket.com/albums/ii586/jacob1899/BlackCrumple1_zps96228b90.jpg);;" ><legend style="color: #f0f8ff; background: url(http://i1261.photobucket.com/albums/ii586/jacob1899/BlackCrumple1_zps96228b90.jpg) ;padding: 2px;border: 3px dotted Red;">MENU</legend>
<font color="00ffff">
<br>
<?php
session_start();
require_once("connect.php");
// Check his status.
if (!empty($_SESSION['username'])) // he got it.
{
echo "<form action='logout.php' method='post'>
<input name='return' type='hidden' value='<?php echo urlencode($_SERVER["PHP_SELF"]);?>" />
<input type=submit' value='logout' />
</form>";
}
else // bad info.
{
echo "
<div style='style='position:absolute; right:0px;'>
<form id='login' action='login.php' method='post'>
GamerName: <input type='text' name='username' id='username' maxlength='25'/><br>
FirstName: <input type='text' name='firstname' id='firstname' maxlength='20'/><br>
LastName: <input type='text' name='lastname' id='lastname' maxlength='20'/><br>
Password <input type='password' name='password' id='password' maxlength='25'/><br>
Confirm Password: <input type='password' name='password2' id='password2' maxlength='25'/><br>
<input type='submit' name='Submit' value='Register!'/><br>
</form></div>
";
}

?>
</font>
<hr>
</div>



i keep getting this error

Parse error: syntax error, unexpected '"', expecting T_STRING or T_VARIABLE or T_NUM_STRING in /home/a7634547/public_html/reg1ster.html on line 40


how can i fix it please help me ! is it fixable or do i have to rewrite the script under the html comment
<!--Right Menu-->
 
Back
Top