Can anyone tell me how i can make a multiline textbox type thing? Id like it so i could write to a file whats in there.
thanks :wave:
Printable View
Can anyone tell me how i can make a multiline textbox type thing? Id like it so i could write to a file whats in there.
thanks :wave:
You can use a textarea in HTML:
Make sure you use the htmlspecialchars() function if you want to load text from PHP into the textarea, to ensure that none of it gets parsed as HTMLHTML Code:<textarea>Default text goes here</textarea>
cool thanks