I have created a HTML form and a Word document. Actually I want to update the specific fields in the Word document. Like the following, user will fill in this form
<form action="test.php" method="post">
<table>
<tr>
<th>Organization / Company:
<td>
<input type="text" name="company" size="50" required>
</td>
</th>
</tr>
<tr>
<th>Telephone:
<td>
<input type="text" name="tele" size="50" required>
</td>
</th>
</tr>
<tr>
<th>E-Mail:
<td>
<input type="email" name="email" size="50" required>
</th>
</tr>
</table>
<input id="submitBtn" type="submit" value="Submit">
</form>
Then save these data to the fields (highlighted in red) in the Word document:
Is there any advice? Thank you so much!