Is there a way to append/preppend something to the data sent with <form method="post"> with html?
Explanation:
a user enters "Hello World" into a <textarea> element with name="textArea1". Is it now possible to write the html so that the server receives:
$_POST['textArea1'] == 'This sentence was prepended with html. Hello World';
I know how to do this with js, I am just curious if there is a way to do this with just plain html. If this is not possible, is there a way to send along the script name that made the post request?