
Hi,
I have never worked with mdb and odbc and not much experience with php either.
sooo...
I followed the installation instructions, uploaded it all to my server,
include the rate.php in my site and get this
Fatal error: Call to undefined function odbc_connect() in /home/blabla/www/mywebsite.com/ratings/3/dbInfo.php on line 14
does that mean my db path is wrong? the password? is odbc not connect not supported?
in dbInfo.php on line 14 its
$conn=odbc_connect('DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=' . $dbPath, $dbUsername, $dbPassword);
I'm totally helpless.
Offline






This means your server does not have the feature of php which allows the use of odbc databases. A lot of php is built as optional modules which can be included if wanted. So unfortunately you probably won't be able to use the script.

Offline