最新文章專題視頻專題問答1問答10問答100問答1000問答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
當(dāng)前位置: 首頁 - 科技 - 知識百科 - 正文

php數(shù)據(jù)庫接口是什么

來源:懂視網(wǎng) 責(zé)編:小采 時(shí)間:2020-11-27 15:02:23
文檔

php數(shù)據(jù)庫接口是什么

php數(shù)據(jù)庫接口是什么:php支持哪些數(shù)據(jù)庫(擁有哪些數(shù)據(jù)庫接口)(推薦學(xué)習(xí):PHP視頻教程)Adabas D ,InterBase ,PostgreSQL ,dBase ,F(xiàn)rontBase ,SQLite ,Empress ,mSQL ,Solid ,F(xiàn)ilePro(只讀),Direct MS-SQL ,Sybase ,Hyperwave
推薦度:
導(dǎo)讀php數(shù)據(jù)庫接口是什么:php支持哪些數(shù)據(jù)庫(擁有哪些數(shù)據(jù)庫接口)(推薦學(xué)習(xí):PHP視頻教程)Adabas D ,InterBase ,PostgreSQL ,dBase ,F(xiàn)rontBase ,SQLite ,Empress ,mSQL ,Solid ,F(xiàn)ilePro(只讀),Direct MS-SQL ,Sybase ,Hyperwave

php支持哪些數(shù)據(jù)庫(擁有哪些數(shù)據(jù)庫接口)(推薦學(xué)習(xí):PHP視頻教程)

Adabas D ,InterBase ,PostgreSQL ,dBase ,F(xiàn)rontBase ,SQLite ,Empress ,mSQL ,Solid ,F(xiàn)ilePro(只讀),Direct MS-SQL ,Sybase ,Hyperwave ,MySQL ,Velocis ,IBM DB2 ,ODBC ,Unix dbm ,informix ,Oracle(OCI7 和 OCI8),Ingres ,Ovrimos

以上數(shù)據(jù)庫都支持,簡言之,支持絕大多數(shù)主流數(shù)據(jù)庫

php原生操作mysql數(shù)據(jù)庫方法

<?php
//數(shù)據(jù)庫操作
//1.導(dǎo)入數(shù)據(jù)庫
require("../../public/dbconfig.php");
//2.連接數(shù)據(jù)庫
$link=mysql_connect(HOST,USER,PASS) or die("數(shù)據(jù)庫連接失敗");
//3.選擇數(shù)據(jù)庫,設(shè)置字符集
mysql_select_db(DBNAME,$link);
mysql_set_charset("utf8");
//4.編寫sql語句,發(fā)送sql語句到數(shù)據(jù)庫
$sql="select * from users";
$res=mysql_query($sql,$link);
//5.解析結(jié)果集
while($user=mysql_fetch_assoc($res)){
echo "<tr align='center'>";
echo "<td>{$userstate[$user['state']]}</td>";
echo "<td>{$user['username']}</td>";
echo "<td>".date("Y-m-d",$user['addtime'])."</td>";
echo "<td>
<a href='edit.php?id={$user['id']}'>修改</a> 
<a href='action.php?a=del&id={$user['id']}'>刪除</a>
</td>";
echo "</tr>";
}
mysql_free_result($res);
mysql_close($link);
?>

聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

php數(shù)據(jù)庫接口是什么

php數(shù)據(jù)庫接口是什么:php支持哪些數(shù)據(jù)庫(擁有哪些數(shù)據(jù)庫接口)(推薦學(xué)習(xí):PHP視頻教程)Adabas D ,InterBase ,PostgreSQL ,dBase ,F(xiàn)rontBase ,SQLite ,Empress ,mSQL ,Solid ,F(xiàn)ilePro(只讀),Direct MS-SQL ,Sybase ,Hyperwave
推薦度:
標(biāo)簽: 數(shù)據(jù) php 接口
  • 熱門焦點(diǎn)

最新推薦

猜你喜歡

熱門推薦

專題
Top