I am creating a form in Html and I want to return the data entered by the user on another page of an Html. I don't want to go through the client-server coding. Just a simple Html page with the data after clicking Submit button. I am new to Html so just learning as you can see I have written an Html file name in the action attribute of the form. This is not working. Kindly reply, I cannot find the answer anywhere else. I am open to javascript.
<form action="formData.html" method="POST">
<table width="70%"  cellpadding="8"> 
 <tr>      
     <td width="40%">First Name:</td>         
     <td> <input type="text" name="first_name" /></td>
 </tr>
 <tr>
     <td>Middle Name:</td> 
     <td><input type="text" name="middle_name" /></td>
 </tr>
 <tr>
     <td>Last Name:</td>
     <td colspan="2"><input type="text" name="last_name" /></td>
 </tr>
 <tr>    
     <td>Gender :</td>
     <td width="30%"><input type="radio" name="gender" />Male</td>
     <td width="50%"><input type="radio" name="gender" />Female</td>
 </tr>
 </table>
 <input type="submit" value="submit" />
 </form>
 
     
    