Hi,
Im having problem with news. Admin needs to edit news, but he wants to see what is already in there. There is code:
<tr align="center">
<td width="120"><b>Title</b></td>
<td width="120"><input name="title" value="<? echo $row['title']; ?>"></td>
</tr>
<tr>
<td width="150">Text:</td>
<td width="300" align="left" valign="top"><textarea name="text" cols="50" rows="7"><? echo $row['text']; ?></textarea>
</td>
</tr>
How to pass value to DB and see old one in textarea? Thanks