otomatic - 2020-03-03

MySQL 8 uses by default the utf8mb4 character set, a character set not supported by the MySQL library of PHP 5.6.
You have to tell MySQL to use utf8 instead of utf8mb4.
In the my.ini file of the MySQL version 8 used, under the section name [wampmysqld] or [wampmysqld64] for the 64bit version add character-set-server=utf8

[wampmysqld]
character-set-server=utf8

or

[wampmysqld64]
character-set-server=utf8