Greetings
I have a slight problem.
The below code works well. I retrieve the data from the database and it is displayed. It also updates when data is changed or added.
The Problem: I want to have a textarea rather than just type=text. Also I would the combo box or I think it's called a select_single
Any ideas on either would be good. Thanks
Code:
list($firstname) = edit_retrieve($login_check[1]);
<tr bgcolor="#FFFF44">
<td><font face="Arial, Helvetica, sans-serif" size="2" color="blue">First Name : </font></td>
<td><font face="Arial, Helvetica, sans-serif" size="2">
<input type=text name=firstname value="<? echo $firstname; ?>">
</font></td></tr>
$update = edit($login_check[1], $firstname);