Home > Backend Development > PHP Tutorial > PHP PDO之数据库连接

PHP PDO之数据库连接

WBOY
Release: 2016-06-21 08:45:57
Original
871 people have browsed it

1,参考W3CSHOOL

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

2,连接access

<?php $db = new PDO("odbc:driver={microsoft access driver (*.mdb)};              dbq=".realpath("data.mdb"))               or die("Connect Error");    $rs = $db->query('select * from user');print "<pre class="brush:php;toolbar:false">";print_r($rs->fetchAll());print "
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