I am using mysqli_stmt::bind_param
function in my PHP scripts.
It is not convenient to care whether you pass parameter type 'd' or type 's' or whatever. Why it is bad to always use type 's' for strings, integers and doubles?
As far as I understand mysql will handle type conversion itself when needed.