When I try to execute the following php code:$dbh = new msqli($databasehost,$databaseusername,$databasepassword,$databasename);
I get class msqli not found
Do I need to change a php.ini setting? Something else? Thanks.
When I try to execute the following php code:$dbh = new msqli($databasehost,$databaseusername,$databasepassword,$databasename);
I get class msqli not found
Do I need to change a php.ini setting? Something else? Thanks.
there is no msqli .
try this with mysqli:
$dbh = new mysqli($databasehost,$databaseusername,$databasepassword,$databasename);
You might be trying to use the mysqli extension
See here http://www.php.net/manual/en/book.mysqli.php