Nothing wrong with the MODIFICATION, but your HTML FORM Codes.
HTML 102:
When you want to print values from a previous form in TEXT BOXES, you would use the following codes:
<textarea name="HTMLTutorialsHelp" cols="40" rows="10"><%HTMLTutorialsHelp%></textarea>
So, taking this example into account, the following codes:
<textarea class="sexyblue" wrap="virtual" name="Description" value="<%Description%>" rows="3" cols="42">
</text-area>
should be the following:
<textarea class="sexyblue" wrap="virtual" name="Description" rows="3" cols="42"><%Description%>
</textarea>
See the problem now??
Regards,
Eliot Lee
HTML 102:
When you want to print values from a previous form in TEXT BOXES, you would use the following codes:
Code:
<textarea name="HTMLTutorialsHelp" cols="40" rows="10"><%HTMLTutorialsHelp%></textarea>
So, taking this example into account, the following codes:
Code:
<textarea class="sexyblue" wrap="virtual" name="Description" value="<%Description%>" rows="3" cols="42">
</text-area>
should be the following:
Code:
<textarea class="sexyblue" wrap="virtual" name="Description" rows="3" cols="42"><%Description%>
</textarea>
See the problem now??
Regards,
Eliot Lee