How to install mysqli php module in virtualmin?

I would have sworn it was installed by default. Try

php -m | grep -i mysql

in the shell and see if it’s in there. If it returns nothing, then

yum install php-mysql
 
php -m | grep mysqli

Richard