I have a third party script and in this script I want to add a new input field in the User profile update -page. I want to save the bank field where user can save their bank names. I have already created a bank column in the database table members.
The script does not save the bank name to the database.
<form id="settingsform" onsubmit="return submitform(this.id);">
<input type="hidden" name="a" value="submit" />
<td align="right" width="50%">Bank Name:</td>
<td><input type="text" name="bank" id="bank" value="{$user_info.bank}"></td>
This is the code that I have for the form.
All settings are shown on the .tpl (Smarty) -file. Could you please help me out?