A: 
<form action="index.php" method="post" name="acc_info_form">
  Username:    <input type="text" name="myuser" id="myuser" /><br/>
  First Name:    <input type="text" name="name" id="name" /><br/>
  <input  type="submit"  value="Save"/>
</form>

index.php

   //Here you have to write database connection and then
    <?PHP  if ( $_POST){  ?>
        mysql_query("INSERT INTO users (myuser, name) VALUES('".$_POST['myuser']."',".$_POST['name']."' )") or die(mysql_error());
    <?PHP } ?>
Salil
Yes...i think, i was making it complicated, but in the fact was it is easy. So thanks...
Nitz
this solution is vulnerable to SQL injection. You need to use at least `mysql_real_escape_string()` to sanitize the POST input before it is inserted into the query.
Pekka