Home  >  Article  >  Backend Development  >  php 联接access

php 联接access

WBOY
WBOYOriginal
2016-06-13 13:06:57815browse

php 连接access
$db = '\rs\guest\guestbook.mdb';
$conn = new COM('ADODB.Connection');
$conn->Open("DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=$db");
?>
我这里那里错了啊
D:\AppServ\www\rs\guest 数据库在这个目录

我一定要用相对路径


------解决方案--------------------
把$db = '\rs\guest\guestbook.mdb'; 改成$db = realpath('\rs\guest\guestbook.mdb');试试

PHP code

<?php $db = realpath('\rs\guest\guestbook.mdb');
$conn = new com("ADODB.Connection");
$connstr = "DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=".realpath("data/phone.mdb");
$conn->Open($connstr);
?> <div class="clear">
                 
              
              
        
            </div>
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn