45fan.com - 路饭网

搜索: 您的位置主页 > 电脑频道 > 编程代码 > 阅读资讯:PHP ODBC连接数据库的实例分享

PHP ODBC连接数据库的实例分享

2015-08-04 08:55:48 来源:www.45fan.com 【

PHP ODBC连接数据库的实例分享

本文实例讲述了PHP使用ODBC连接数据库的方法。分享给大家供大家参考。具体实现方法如下:

<!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" 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程序设计有所帮助。


本文地址:http://www.45fan.com/bcdm/16695.html
Tags: 数据库 PHP ODBC
编辑:路饭网
推广内容
推荐阅读
热门推荐
推荐文章
关于我们 | 联系我们 | 友情链接 | 网站地图 | Sitemap | App | 返回顶部