PHP學習之用PHP操作SQL一

來源:互聯網
上載者:User

標籤:

串連資料庫的案例:所用到的函數為

1.mysql_connect(‘IP‘,‘資料庫使用者名稱‘,‘資料庫密碼‘)開啟一個到 MySQL 伺服器的串連 返回一個資源控制代碼
2.mysql_select_db(‘資料庫名‘)選擇 MySQL 資料庫
3.mysql_query(‘查詢語句‘) — 發送一條 MySQL 查詢
4.mysql_fetch_array(‘查詢語句的結果‘,MYSQL索引方式) 從結果集中取得一行作為關聯陣列,或數字數組,或二者兼有.
MYSQL_BOTH,將得到一個同時包含關聯和數字索引的數組。用 MYSQL_ASSOC 只得到關聯索引,用 MYSQL_NUM 只得到數字索引
5.mysql_free_result(查詢結果) — 釋放結果記憶體
6.mysql_close — 關閉 MySQL 串連
or die(‘‘.mysql_error())拋出錯誤

<?php//網頁編碼格式header(‘Content-Type:text/html;charset=utf-8‘);//開啟資料庫伺服器define(‘DB_HOST‘,‘localhost‘);define(‘DB_USER‘,‘root‘);define(‘DB_PWD‘,‘root‘);define(‘DB_NAME‘,‘school‘);[email protected]_connect(DB_HOST,DB_USER,DB_PWD) or die(‘資料庫連接失敗‘.mysql_error());//選擇需要用到的資料庫@mysql_select_db(DB_NAME) or  die(‘資料庫不存在‘.mysql_error());//轉換用資料庫編碼@mysql_query(‘SET NAMES UTF8‘) or die(‘編碼錯誤‘.mysql_error());//寫出查詢語句$query=‘select*from grade‘;//執行查詢語句返回結果[email protected]_query($query,$conn) or die(‘執行語句錯誤‘.mysql_error());//列印出執行結果print_r(mysql_fetch_array($result,MYSQL_ASSOC));//釋放資源mysql_free_result($result);//關閉資料庫mysql_close($conn);?>

  

 

PHP學習之用PHP操作SQL一

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.