I don't know if it happens because my bad cofification, but now, i'm really afraid because it's a university project and i have no time to change to another framework.
Ok, i'll try to explain it.
I filter rows by user id, and my intention is that only one user can modify his records.
$crud->set_table('REL_CONVOCATORIA_USUARIO');
$crud->where('REL_CONVOCATORIA_USUARIO.IDUSUARIO',$idusuario);
But if type in the url somethin like this:
http://localhost:8080/index.php/gestorusuario/gestorconvactivas/edit/43
i can modify item 43 thats is not an item from the current user
What i'm doing wrong?
How can i prevent url modifications?
It's an aplication with three roles, admin, supervisors and users, and in many pages only one person can modify his user data.