i have a simple form like this:
<form method="POST" action="do_something.php">
<label for="name">Your name: </label> <input type="text" id="name" name="name">
<input type="submit">
</form>
and then a php file that do this:
<?php
echo "your name is ". $_POST['name'];
?>
And my quest is to enabled default form sending and to write my own form sending method in javascript. But I'm not a big friend of javascript and i absolutely dont know where to start. :( Can anyone give me direction or help me? Thanks!