Hello,
I'm trying to get some input from a user and use that input in a php script. Right now I have a form tag, from the little I understand, this cannot have multiline input. The solution seems to be a TextArea, however I'm not sure how to get the input from a TextArea.
Here's my code with the form :
<form action="traitement_cmd.php" method="post" >
Enter Cmd: <input type="text" size="100" maxlength="100" name="cmd"/>
</form>
The textarea tag doesn't seem to have the same attributes as a form tag, so I'm not sure how I should change my code. I also need a button for the user to click to send his input to the php script.
How can I change my code to do this ?
Thank you.