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