I got this from a PHP site:
<textarea name="Post" style="box-sizing: border-box; width: 100%; height: 200px;" tabindex="3"></textarea>
It's a field where you can enter several lines of text. How can I use a link that you type in address bar of browser so if you visit this link it will automatically type a text into this textarea field?
Another example where I got it working:
<input type="text" tabindex="2" name="subj" maxlength="64" value="">
Here it's simple, I only need to take the name and insert it to the link, like this:
https://example.site.org/pm.php?c=1&subj=anytext
But how would it work for the textarea above? I have tried adding &Post=anytext but that didn't help me to fill the textarea with text once I visit the link? :/
Here is an image if my problem is unclear but I'm not allowed to make it visible because my low points https://i.stack.imgur.com/Kp3ir.png