Not really, as ive never attempted anything similar to this before, I am kind of lost as to how...
Ill try to explain a little better...
I have HTML form, for arguments sake lets say:
FORM.HTML:
<form action="result.php" method="POST">
Forename: <input type="text" name="name" />
Surname: <input type="text" name="name2" />
<input type="submit" />
</form>
RESULT.PHP:
Forname: <?php echo $POST["name"]; ?>
Surname: <?php echo $POST["name2"]; ?>
(Not all code included.)
When I submit that, it takes me to result.php page with the information entered in to the form fields.
However, instead of just echoing once, when the form is submitted I want it to update another file HTML or PHP already on the server with the new information, like a user profile.
Hope this makes things more clear...
thx