... pués eso incumbe a un lenguaje del lado del servidor, será él el que reciba los datos.
No sé de otros lenguajes pero con PHP puedes hacer algo como:
Código PHP:
<?php
if(!isset($_POST['submit'])) {
?>
<form action="<?php echo $_SERVER['PHP_SELF'] ?>" method="POST">
User: <input type="text" name="user"><br>
Password: <input type="password" name="pass" /><br>
<input type="submit" name="submit" value="Enviar">
</form>
<?php
} else {
$xml= "<?xml version=\"1.0\" encoding=\"UTF-8\"?>";
$xml.= "<registro>\n\t<usuario>\n\t\t".$_POST['user']."\n\t</usuario>\n\t";
$xml.= "<password>\n\t\t".$_POST['pass']."\n\t</password>\n</registro>";
$file= "archivo.xml";
$gest= fopen($file, "w");
fwrite($gest, $xml);
fclose($gest);
header("Location: $file");
}
?>
www.php.net/variables.external www.php.net/filesystem