Happy Holidays!
I have a one field form. Upon submission with the submit button, I wish to drive this field value into my SQL database table called MEMBERS and field called NAMES, thus adding a new record.
Can this be done with an OnSubmit() call to a function, in the HEAD of the HTML form page, which contains a series of statements opening the database, entering the data, and closing the database?
<tr>
<td class="mystyle">Your Full Name:</td>
<td><input type="text" name="Name" size="30"></td>
</tr>