Yo no tengo ni idea de php, pero obserbando algo por ahi algo a veces pillo

El caso es que intento poner un chat en mi web pero para entrar quiero que pongan su nick antes, pero no hay manera de que me acepte el nick que escribo en la primera parte.
¿Podria alguien decirme que hice mal?
Aqui os dejo las dos partes.
Gracias por todo ya.
Código:
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> <head> <title>1</title></head> <body> <table width="17%" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td valign="middle"><form method="POST" action="2.html"> <div align="center">Pon tu alias : <input type="text" name="nick"> <input name="submit" type="submit" value="Enter"> </div> </form></td> </tr> </table> </body> </html>
Código:
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>2</title> </head> <body> <object id="ChatFrame" classid="CLSID:F58E1CEF-A068-4c15-BA5E-587CAF3EE8C6" width="100%" height="450" codebase="http://fdl.msn.com/public/chat/msnchat45.cab#Version=9.02.0310.2401"> <param name="RoomName" value= "'1'"> <param name="NickName" value= "nick"> <param name="Server" value="planetty.ath.cx"> <param name="Feature" value="6"> <param name="ChatMode" value="2"> <param name="BaseURL" value="http://sinac.jexiste.es/"> <param name="UserRole" value="5"> <param name="MessageOfTheDay" value="En pruebas."> <param name="ButtonBackColor" value="12481836"> <param name="ButtonTextColor" value="16579836"> <param name="TopBackHighlightColor" value="12290082"> <param name="BackHighlightColor" value="15253915"> <param name="ForeColor" value="0"> <param name="InputBorderColor" value="12290082"> <param name="BackColor" value="12290082"> <param name="ButtonFrameColor" value="13619151"> </object> </body> </html>