Hi everyone,
All that is contained in my “form” code is a “textarea” input and a submit button.
All I want is that assigned to that “textarea” to show up. This is the php code:
You spelt the method attribute wrong in your form tag, making the HTTP method for your form default to using GET (hence why you should see the data you’re sending within your URI (the query string)).
EDIT: Also be aware that you’re vulnerable to XSS attacks. You need to ensure that the user data you’re outputting has been properly escaped (using either htmlentities() or htmlspecialchars()).