Back with an issue which I'm sure you guys will find easy to fix. Whilst using the maxlength function in html, I noticed that users can simply use inspect element to modify the maxlength deeming it pretty useless.
Basic example of max-length:
<input type="text" name="username" maxlength="250" alt="Please don't change my maxlength">
I'm looking for a solution in Javascript or PHP at preventing this code manipulation on the server side.
Thanks in advance.