if you mean "textarea", it goes like this:
echo "<textarea name=myname>$something</textarea>";
note that - if you intend to put HTML code inside the TA - you must not have a </textarea> inside $something.
workaround:
$something = str_replace('</textarea>', '<!/textarea>', $something);
when writing it somewhere (e.g. database, text/html file), reverse the replacement.