Friends;
I'm developing an application and I have a manager where the database records are ready. The information is arranged in a table and I have a checkbox for selection of records that can be edited or deleted. This way:
<input name="selecionados[]" id="110" class="iCheck" type="checkbox">
The id is the primary key of the record. What happens to me is that if I modify the value of the id through the "inspect element" I can change or delete any record in the database. This could cause a major problem. To delete I'm using JQuery and $ .post. I could encrypt the value of the id and make it difficult for anyone who wanted to circumvent the system. But what I would like to know is if there is a way to get the original value in html and not the value edited by "inspect element"?