Hi,
I have designed a form where local enviornmental projects can submit their information, which i'm currently testing - the various fields (ProjectName, ProjectEmail etc) are all functioning nicely.
However, the ProjectDesc field (project description) does not autofill when i click "edit record" (on the frontend).
Here is the code for ProjectDesc:
I amended the table using PhpMyAdmin so the field is of type VARCHAR(2000).
This is the only field that i used textarea for - is this the prob? I'd rather have used a WYSIWYG editor for this field, but i'm a bigger and storing the data struck me as quite complicated, and this seemed like a simpler solution!
cheers
I have designed a form where local enviornmental projects can submit their information, which i'm currently testing - the various fields (ProjectName, ProjectEmail etc) are all functioning nicely.
However, the ProjectDesc field (project description) does not autofill when i click "edit record" (on the frontend).
Here is the code for ProjectDesc:
<fieldset>
<div class="form_item">
<div class="form_element cf_textbox">
<p><big><b>Detailed description</b></big><br>
<p>Please describe your project, including details of how volunteers can get involved. Free text, up to 2000 characters. </p>
<textarea class="cf_inputbox required" maxlength="2000"
rows=30 cols=60 title="Free text, up to 2000 characters. Please include details of how volunteers can get involved" id="text_9"
name="ProjectDesc" type="text" />
</textarea>
</fieldset>
I amended the table using PhpMyAdmin so the field is of type VARCHAR(2000).
This is the only field that i used textarea for - is this the prob? I'd rather have used a WYSIWYG editor for this field, but i'm a bigger and storing the data struck me as quite complicated, and this seemed like a simpler solution!
cheers