I want to know how to check whether MySQL strict mode is on or off in localhost(xampp).
If on then for what modes and how to off.
If off then how to on.
Check the value with
SELECT @@GLOBAL.sql_mode;
then clear the @@global.sql_mode by using this command:
SET @@GLOBAL.sql_mode=''