I want to do following task, first of all I have created this html file, namely form.html
<html>
<head>
<title>please insert your personal information </title>
<head>
<body>
<form action="table.html"method="post">
ID : <input type="text" name="ID" value=" " > </br>
FIRST_Name : <input type="text" name="FIRST_Name" value=" "/></br>
Last_name :<input type="text" name="Last_name" value= " " /></br>
job_id :<input type="text" name="job_id" value=" " /></br>
JOB_Description : <input type="text" name="JOB_Description" value=" " /></br>
Locations : <input type="text" name="locations" value=" "></br>
<input type="submit" name="submit" value="submit"/></br>
</form>
</body>
</html>
My aim is that when user enters his/her information, it should redirect to another file, where is created table form and this information is written in this table, such that every time anybody does fill this fields,this table will grow and does not overwrites existed information, so I am interested how to do it in table. HTML (which is a page where my form.html should go after clicking submit buttons) also I am interested should I save my table in html extension or php extension? Reason why I am asking it is that can I access variables declared in one html file from another html file without php $_POST method? Or can I use php in a table. html for just variable access?