Hello i am following this FAQ about input sanitize but I need some help.
I have a form that will write into the database (custom code). I don’t care about required fields but what I care about is sanitize the data from malicious code SQL injection and so on. Also users should not be allowed to enter html.
Up to now I have created a custom code in the On Submit where i placed the Advanced Filtering code from the FAQ and a debugger.
After submit I can check that if i write test’ in the first input field it will be changed to test' so I guess it works correctly, now do I need to do anything else in my case?
I know input sanitation is a huge subject what I mean is if I need to do anything else in relation to the FAQ in my case or am I covered.
I have a form that will write into the database (custom code). I don’t care about required fields but what I care about is sanitize the data from malicious code SQL injection and so on. Also users should not be allowed to enter html.
Up to now I have created a custom code in the On Submit where i placed the Advanced Filtering code from the FAQ and a debugger.
After submit I can check that if i write test’ in the first input field it will be changed to test' so I guess it works correctly, now do I need to do anything else in my case?
I know input sanitation is a huge subject what I mean is if I need to do anything else in relation to the FAQ in my case or am I covered.