![]() |
url security - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23) +--- Thread: url security (/showthread.php?tid=49653) |
url security - El Forum - 02-27-2012 [eluser]ibnclaudius[/eluser] For example, I have an anchor for this link: http://localhost/meuboletim/index.php/form/change_user_school/2/Escola2 How can I avoid the user from typing this url directly in the browser? url security - El Forum - 02-27-2012 [eluser]Aken[/eluser] You can't. But you can run checks to make sure that it's being used in the correct way. For instance, check to see if something has been POSTed to the URL. Or, check that it's an Ajax request and not a direct browser request. |