I am using PHP 7.2.18. I want to establish a database connection with MS Access.
<?php
ini_set('display_errors','On');
$conn = odbc_connect('access_dbname','','');
if ($conn) {
echo 'success';
} else {
echo 'false';
}
?>
When I run it, I get the error as undefined function odbc_connect(). I have tried repeatedly enabling odbc extension in php.ini file but didn't work. Also I am using wamp server.