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

PHP PDO之数据库连接

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-21 08:45:57940browse

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 "
";


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