Jump to content

HTML Text Area Box


perezf

Recommended Posts

you put it inside a form element and you assign a name to it just like a form element:

 

<form action = 'target.php' method = 'post'>
   <textarea name = 'blah' rows = '10' cols = '10'></textarea>
</form>

 

and then you access the input just like a regular posted var:

 

target.php

echo $_POST['blah'];

Link to comment
https://forums.phpfreaks.com/topic/111198-html-text-area-box/#findComment-570733
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.