9 ms·
HN, what do you think of my weekend project?
- codenesium 14y agoI think you should sanitize your input fields. Code Igniter has built in functions for XSS http://ellislab.com/codeigniter/user-guide/libraries/input.html http://ellislab.com/codeigniter/user-guide/libraries/input.h.... $var = $this->input->post('some_data', TRUE);
- mruocco 14y agoExcellent advice. Major oversight here. Thanks, this is going in right now. EDIT: I just changed this. Thanks again!