<TEXTAREA NAME="name"> -- creates PHP variable for textarea value
Description
fills in the form with values based on the form name and the tag name. If flexyignore is
used, it is left alone. (or if the body or form has a flexyignore tag it will be left alone)
Example
Example 25-3. Compiled template <FORM NAME="theform">
<TEXTAREA NAME="theinput"><?php echo htmlspecialchars($t->theform->theinput); ?></TEXTAREA>
<?php if (isset($this->errors['theform.theinput'])) {
echo htmlspecialchars($this->errors['theform.theinput']); } ?>
</FORM> |
|