Hello,
In many web platforms, I see that there are forms, search systems, etc., where the user needs to be obligatorily, to mark some elements, be they dropdowns, checkboxes, radio buttons, but in some of them, regardless of whether they are empty or no, the system still filters and returns what you wanted because some do not require padding.
My curiosity is to know how the backend is normally done under these circumstances. How is select
done within the bank? Because the only way I imagine it would be a string of ifs
or switches
with PHP.
Thank you.