首頁 > php教程 > PHP源码 > PHP 使用 ODBC 连接数据库

PHP 使用 ODBC 连接数据库

PHP中文网
發布: 2016-05-25 17:14:07
原創
1180 人瀏覽過

php代码:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
    <head>
        <title>PHP and ODBC: XHTML Example 1</title>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    </head>
    <body>
    <?php
        $conn = odbc_connect(
          "DRIVER={MySQL ODBC 3.51 Driver};Server=localhost;Database=phpodbcdb", 
          "username", "password");
        if (!($conn)) { 
          echo "<p>Connection to DB via ODBC failed: ";
          echo odbc_errormsg ($conn );
          echo "</p>\n";
        }

        $sql = "SELECT 1 as test";
        $rs = odbc_exec($conn,$sql);
        echo "<table><tr>";
        echo "<th>Test</th></tr>";
        while (odbc_fetch_row($rs))
         {
         $result = odbc_result($rs,"test");
         echo "<tr><td>$result</td></tr>";
        }
        odbc_close($conn);
        echo "</table>";
    ?>
    </body>
</html>
登入後複製
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
最新問題
熱門推薦
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板