Just put the variable between the textarea tags:
Code:<textarea name="message"><?=$smessage?></textarea>
Printable View
Just put the variable between the textarea tags:
Code:<textarea name="message"><?=$smessage?></textarea>
Hmmm...that's so weird :/
I'm clueless on that one. It should work...ha.
The one thing I see is the code you posted above is:
It should be:Code:<textarea name="message"><?$smessage?></textarea>
If that doesn't work, I'm not entirely sure...Code:<textarea name="message"><?=$smessage?></textarea>
The other thing, and thanks to Twey for pointing this out to me, is in the code you posted, you have:
You should use "&&", not "&":PHP Code://If the name and email are something other than nothing...
if($name != "" & $tel != "" & $email != "" & $message != "" ) {
That doesn't seem to be shooting back any errors...but I would make it right to just, well, have it right. :)PHP Code://If the name and email are something other than nothing...
if($name != "" && $tel != "" && $email != "" && $message != "" ) {