My site sets the charset to UTF-8 in the header, and I only want to accept UTF-8 when a user submits a form.
I know that I can do this in each <form> tag:
<form accept-charset="UTF-8">
I'm pretty sure that the answer is "no", but is there ANY way to make every <form> tag on the site include this without manually changing every one of them?
All of my display pages are written in PHP, and most of the processing is done via Perl. My initial thoughts were that it might be able to be done in Apache config, or even CSS, but I'm not finding anything.