sending form content in the form of xml to a php...

sending form content in the form of xml to a php...

Hi I have a form
<form name="myForm" action="login.php"  method="post" >
<label for="login"><font size="2"><b>Login Id :</b></font></label>  
<input type="text" name="login" id="myText" class="input" placeholder="Enter the User name here">
<label for="login"><font size="2"><b>Password :</b></font></label>
<input type="password" name="password" id="myText" class="input" placeholder="Enter the Password here">
 <input type="submit" id="login" class="btn" value="Login"/>
</form>

Now if I want to  send the username and password in the form of xml to login.php  what to do?