Aver, por ejemplo si quiero poner esta tabla...?
    
Código PHP:
Ver original- <table align="right" bgcolor="#666666" style="float:right; margin-top:-34px;"> 
-   
-           <tr class="dropdown"> 
-   
-             <td align="right">Usuario:  
-   
-               <input type="text" name="username" size=10></td> 
-   
-             <td align="right">Password:  
-   
-             <input type="password" name="password" size=10> </td> 
-   
-             <td align="right"><input type="submit" value="Entrar" name="login"> </td> 
-   
-             <td width=100 align="right"> <center><a href="register.php" title="Click here to join now!"> 
-   
-                 <img src="images/join.gif" border=0 onMouseOver="this.src='images/join1.png';" onMouseOut="this.src='images/join.gif';"> 
-   
-                 </a> </center> 
-   
-         </table> 
Seria    
Código PHP:
Ver original- <?php 
-             
-             
-             if(isset($_SESSION["imagehost-user"]) && !empty($_SESSION["imagehost-user"])){ 
-             
-                        echo "<li class=\"Estilo4\"><a href=\"/account.php\">Mi Cuenta</a></li>"; 
-                   } 
-                   else{ 
-                      echo "<table align="right" bgcolor="#666666" style="float:right; margin-top:-34px;">; 
-   
-           <tr class="dropdown"> 
-   
-             <td align="right">Usuario:  
-   
-               <input type="text" name="username" size=10></td> 
-   
-             <td align="right">Password:  
-   
-             <input type="password" name="password" size=10> </td> 
-   
-             <td align="right"><input type="submit" value="Entrar" name="login"> </td> 
-   
-             <td width=100 align="right"> <center><a href="register.php" title="Click here to join now!"> 
-   
-                 <img src="images/join.gif" border=0 onMouseOver="this.src='images/join1.png';" onMouseOut="this.src='images/join.gif';"> 
-   
-                 </a> </center> 
-   
-         </table>";             
-               } 
-       ?> 
Y porque el punto y coma ";" y la ultima llave "}" se ponen rojos? Y el cierre de php "?>" No es rojo oscuro como tendria que serlo? :S 
Cuando pongo esto en mi header.php me sale lo siguiente:
Parse error: syntax error, unexpected '<' in /home/ironpicc/public_html/header.php on line 578
Las lineas de error son:   
Código PHP:
Ver original- } 
-                   else{ 
-                      echo "<table align="right" bgcolor="#666666" style="float:right; margin-top:-34px;">; 
-   
-           <tr class="dropdown">