According to that you have mysqli installed (which it should be, it's standard on all PHP installs).
Does it work if you just call mysqli in its own script? e.g.
$mysqli = new mysqli('localhost', 'my_user', 'my_password', 'my_db');
or
$link = mysqli_connect('localhost', 'my_user', 'my_password', 'my_db');