PHP uses PDO to connect to ACCESS database_PHP tutorial

WBOY
Release: 2016-07-13 10:04:50
Original
1077 people have browsed it

PHP uses PDO to connect to the ACCESS database

1, refer to W3CSHOOL

http://www.w3cschool.cc/php/php-pdo.html

2, connect access

The code is as follows:


$db = new PDO("odbc:driver={microsoft access driver (*.mdb)};
dbq=".realpath("data.mdb"))
or die("Connect Error");
$rs = $db->query('select * from user');
print "
";<br>
print_r($rs->fetchAll());<br>
print "
";

The above is a simple and practical method to connect to the ACCESS database using PDO pdo method. I hope you will like it.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/963986.htmlTechArticlePHP uses PDO to connect to ACCESS database 1, refer to W3CSHOOL http://www.w3cschool.cc/php/php- pdo.html 2. The connection access code is as follows: ?php $db = new PDO(odbc:driver={microsoft access driver...
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!