For example we create a form
<input class="k_nip_3" name="k_nip" placeholder="" type="text" value="" />
and we create a rule(min 5. chars):
if (IsSet($_POST['k_nip'][4])) // now corect*
But our user is clever and manipulates our form.
Create and send :
<input class="k_nip_3" name="k_nip[5]" placeholder="" type="text" value="aa" />
And
IsSet($_POST['k_nip'][5])
accept this.
How can I best avoid this situation?