Echo a form into php

hi
i want to have more than one form in the page and always one of them being showed on some situations, i am using echo command but i get error, i will put the code here…


<?php
if($status==1) {
    echo    "<form id="loginform" action="login.php" method="post" name="loginform">
                    <div align="center">
                        <table border="0" cellspacing="10" cellpadding="0">
                                 <tr>
                                    <td class="contactcell" width="100">
                                           <div align="center">
                                            Username</div>
                                    </td>
                         <td width="308"><input class="formcell" type="text" name="user" size="37"></td>
                                  </tr>
                                     <tr>
                                         <td class="contactcell" width="100">
                                            <div align="center">
                                             Password</div>
                                         </td>
                          <td width="308"><input class="formcell" type="password" name="pass" size="37"></td>
                                     </tr>
                                        <tr>
                                           <td class="contactcell" width="100">
                                                <div align="center"></div>
                                            </td>
                                            <td width="308"
                                             <div align="center">
                                             <button class="button" name="buttonName" type="submit">Login</button></div>
                                              </td>
                                              </tr>
                                                  </table>
                                                </div>
                                            </form>
                                            <div style="position:relative;width:440px;height:49px;-adbe-g:p;">
                                            <div class="body" style="position:absolute;top:0px;left:19px;width:400px;height:48px;-adbe-c:c">
                                                Forgot your login information ?<br>
                                                Click here to send your password to your email...<br>
                                            Don't have a username ? <a href="register.php">Register Here...</a></div>
                                        </div>
                                    </div>
                                    </td>
                            </tr>
                        </table>
                        </div>";
}
?>

Thanks !