barrowvian Posted June 9, 2010 Share Posted June 9, 2010 I had a basic contact form in place at the moment. When Im using a simple text field everything works fine; echo '<tr> <td width="10%" align="left" valign="top">Full Name:</td> <td width="20%" align="left"><input type="text" name="name" style="width: 200px" value="'; if ($errorName_Field) echo $_POST['name']; if (isset($_POST['name']) && $errorName_Field==false) echo $_POST['name']; echo '" /></td> <td width="70%" align="left">'; if ($errorName_Field) echo "$errorTextName_Field"; echo '</td>'; echo '</tr>'; If the input is incorrect then is keeps it there for the user to edit along with displaying an error message. If the input is correct it keeps it there too but doesnt display the message. My problem is when it comes to using the same function with a text area. I use pretty much the same code; echo '<tr> <td width="10%" align="left" valign="top">Message:</td> <td width="20%"align="left"><textarea rows="5" name="message" style="width: 199px;" value="'; if ($errorMessage || $errorMessage1) echo $_POST['message']; if (isset($_POST['message']) && $errorMessage==false && $errorMessage1==false) echo $_POST['message']; echo '" /></textarea></td>'; echo '<td width="70%" align="left">'; if ($errorMessage) echo "$errorTextMessage"; if ($errorMessage1) echo "$errorTextMessage1"; echo '</td>'; echo '</tr>'; But for some reason it doesnt work at all. It doesnt keep the input within the area no matter if the input is correct or incorrect. Is there something I have to do different with it being a text area? Ive done a simple echo to return the value of what is inserted upon submission and that works, but it doesnt when its in the text area. Quote Link to comment https://forums.phpfreaks.com/topic/204268-displaying-post-variables-in-a-text-area/ Share on other sites More sharing options...
syed Posted June 9, 2010 Share Posted June 9, 2010 TextArea does not have a value atribtute, it should be like this <textarea>This is the text</textarea> Quote Link to comment https://forums.phpfreaks.com/topic/204268-displaying-post-variables-in-a-text-area/#findComment-1069856 Share on other sites More sharing options...
barrowvian Posted June 9, 2010 Author Share Posted June 9, 2010 Thank you Syed, I removed the value attribute and its worked Quote Link to comment https://forums.phpfreaks.com/topic/204268-displaying-post-variables-in-a-text-area/#findComment-1069860 Share on other sites More sharing options...
syed Posted June 9, 2010 Share Posted June 9, 2010 No probs, can you mark this thread as solved. Quote Link to comment https://forums.phpfreaks.com/topic/204268-displaying-post-variables-in-a-text-area/#findComment-1069865 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.