php 联接access

WBOY
Release: 2016-06-13 10:57:54
Original
792 people have browsed it

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>
Copy after login
Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!