Dave Smith - 2018-10-12 14:44:23 -
In reply to message 1 from Christian Wassmer
They where added to the package after the article was published. For anyone not using the package, you may need to add the following, if your code uses constants, where your connection to the database is being made.
//predifined fetch constants
define('MYSQL_BOTH',MYSQLI_BOTH);
define('MYSQL_NUM',MYSQLI_NUM);
define('MYSQL_ASSOC',MYSQLI_ASSOC);
Dave