Hi
I downloaded PHP, Apache and My SQL from PHP Triad.
I stored my database in Access and so formed an odbc connection via ODBC32..in Windows Settings panel.
So, using Access with PHP and Apache does work fine with PHP triad and I can update, delete and display the data..but it displays an error:
Warning: Failed opening 'DB\ODBC.php' for inclusion (include_path='.; \apache\includes;\apache\htdocs\;\apache\htdocs\phpmyadmin') in C:\apache\htdocs\austincust\dispprinc.php on line 26
The php code I used is:
<?PHP
include_once("DB\ODBC.php"); //line 26 this
$dsn = "";
$user = " ";
$pwd = " ";
$result = 0;
$num =odbc_connect($dsn, $user, $pwd);
$get = "select Pname,Ccontact,Pphone,Pfax,Pemail from TableP";
$num1 = odbc_exec($num, $get);
?>
What to do so as not get this error. Please help.