[Microsoft][ODBC Microsoft Access Driver] '(unknown)' is not a valid path.  Make sure that the path name is spelled correctly and that you are connected to the server on which the file resides.翻译成中文是这样的,[Microsoft][ODBC Microsoft Access 驱动程序](未知) 不是有效的路径。请确保路径名称拼写正确,并且您已连接到该文件所在的服务器。 
遇到这个问题,觉得应该是ODBC和access的配置问题,测试的代码,大概就是这样的,
<?php
$conn=odbc_connect("mydb","","");
$stmt = odbc_prepare($conn, "INSERT INTO mytable (jor_from, jor_to)
VALUES('$from', '$to');" );
if (!odbc_execute($stmt)) {
echo "error";
}
odbc_close($conn);
?>希望遇到过这种情况的朋友给以解答