so I have an HTML form using the form attributes and people can send HTML in the form fields that actually works on the page that reads the form submissions. Is there any way to disable HTML on the form?
<h2>Request a song! (NEW)</h2>
<form method="POST" action="<?php echo $_SERVER['PHP_SELF']; ?>"><br />
Song (Artist - Song):<br />
<input type="text" name="song"><br />
Your Name:<br />
<input type="text" name="name"><br />
Comments (Shoutout requests, etc):<br />
<input type="text" name="dedicated"><br /> <br />
<input type="submit" onClick="javascript:clickedButton()" name="submit" value="Submit">
</form>