Transfer the input from a form to a xml-file

wxdqz

New Member
Hi all ;)
I have this really simple form the code is down here. Id like to take the input in this form and store it in a xml file if that is possible..

If it also could be done id like to present the xml file in another javascript.
Would be very glad if you know any tips or trix with this issue

<html>
<HEAD>

<script language="javascript" type="text/javascript" src=http://www.webdeveloper.com/forum/archive/index.php/"name.js"></script>
<link rel="stylesheet" type="text/css" href="name.css" />
</HEAD>

<BODY>

<form name = "kontakt" onSubmit="return checkFields();" action = "">
<table border = 0 cellpadding = 5 cellspacing = 0>
<tr>
<td>F鰎namn:<br> <input name = "namn" type = "TEXT">
</td>
</tr>
<tr>
<td>Efternamn:<br>
<input name = "lastname" type = "TEXT"></td>
</tr>
<tr>
<td>Epostadress:<br> <input name = "email" type = "TEXT"></td>
</tr>
<tr>
<td>舠ikt:<br> <textarea name = "meddelande" cols = "40" rows = "5">
</textarea></td>
</tr>
<tr>
<td> <input name="SUBMIT" type = "SUBMIT" value = "Skicka formul&auml;ret &raquo;">
</td>
</tr>
</table>
</form>

</BODY>

<html/>
 
Back
Top