At 14:34 23.01.2003, Denis L. Menezes said:
--------------------[snip]--------------------
><?php
>  Print '<textarea name="OrgAddress" cols="44" rows="5" id="textarea"
>value="'.htmlspecialchars($row['OrgName']).'"></textarea>';
>  ?>
--------------------[snip]-------------------- 

This won't work. <textarea> needs its value outside the tag, without an
attribute, just plain:

Print '<textarea name="OrgAddress" cols="44" rows="5" id="textarea">',
      htmlspecialchars($row['OrgName']),
    '</textarea>';


-- 
   >O     Ernest E. Vogelsinger
   (\)    ICQ #13394035
    ^     http://www.vogelsinger.at/



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to