Hi All,
Hopefully easy question...
I have a form that allows the user to view what exists in the database, modify the information & submit updates. All modifications are writing to the database correctly. However, I have a field that is minimum 200+ characters that I want to display in a textarea box instead of text field so that most of the information is visible. However, when the form is pulled up, the textarea field is blank, even though the information DOES exist in the database.
Anybody know where I'm going wrong?
END;
echo '<TEXTAREA name="ir_notes" rows="4" cols="35" value="'.$row["ir_notes"].'">'.'</textarea>';
echo <<<END
Thanks in advance for your help!