Thanks for your reply,
I am trying to access it with the following code:
<?php
$host= "host";
$user= "user";
$password= "password";
$dbName="Products.mdb";
$tblName="Products";
$link= mysql_connect ($host, $user, $password);
$query = "SELECT * from $tblName";
$result = mysql_query ($dbName, $query, $link);
print ("<TABLE BORDER=1 WIDTH=\"75%\" ALIGN=CENTER>\n");
print ("<TR ALIGN=CENTER VALIGN=TOP>\n");
print ("<TD ALIGN=CENTER VALIGN=TOP>PART NUMBER</TD>\n");
print ("<TD ALIGN=CENTER VALIGN=TOP>PART DESCRIPTION</TD>\n");
print ("<TD ALIGN=CENTER VALIGN=TOP>QUANTITY AVAILABLE</TD>\n");
while ($row = mysql_fetch_array ($result)){
print ("<TR ALIGN=CENTER VALIGN=TOP>\n");
print ("<TD ALIGN=CENTER VALIGN=TOP>$row[Part_num]</TD>\n");
print ("<TD ALIGN=CENTER VALIGN=TOP>$row[Descr]</TD>\n");
print ("<TD ALIGN=CENTER VALIGN=TOP>$row[Qty]</TD>\n");
print ("</TR>\n");
}
mysql_close($link);
print ("</TABLE>\n");
?>
is there a different coding I need to use ?