Hi
I downloaded PHP Triad (this includes PHP 4, Apache Server and My SQL.
I stored my database in Access and so formed an ODBC connection via ODBC Data Sources(32bit)..in Windows-Settings-Control Panel.
So, using Access with PHP and Apache does works allright with PHP Triad and I can update, delete and display the data..but it displays the following error on each of the final result page:
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
An example of the php code I used is:
<?PHP
include_once("DB\ODBC.php"); //this line 26
$dsn = "";
$user = " ";
$pwd = " ";
$result = 0;
$num =odbc_connect($dsn, $user, $pwd);
$get = "select Pname,Pcontact,Pphone,Pfax,Pemail from TableP";
$num1 = odbc_exec($num, $get);
?>
What to do so as not get this error of inclusion.
Please help.
Ally