Hi All,
New to PHP so any help appreciated
Can anyone explain why this;
<tr><td><label for="notes">Notes:</label>
<td><input type="text" id="notes" name="notes" maxlength="250" size="70" value="<?php if (!empty($notes)) echo $notes; ?>"></input></td>
</tr>
Displays data from a MySQL database (field $notes, VARCHAR(250) )
and this;
<tr><td class=textboxlabel><label for="notes">Notes:</label>
<td><textarea id="notes" name="notes" rows="4" cols="70" maxlength="250" value="<?php if (!empty($notes)) echo $notes; ?>"></textarea></td>
</tr>
displays nothing????
Not sure how much info to provide........