PHP資料庫編程-使用mysql擴充庫對資料庫操作

來源:互聯網
上載者:User

PHP資料庫編程-使用mysql擴充庫對資料庫操作:

<?php    //使用mysql擴充庫來操作mysql步驟    //1、擷取串連    $conn=mysql_connect("localhost","root","root");    if(!$conn){        die("串連不成功".mysql_error());    }        //2、選擇資料庫    mysql_select_db("test");    //3、設定作業編碼(建議有)    mysql_query("set names utf8"); //保證我們的PHP程式是按照utf8碼操作    //4、發送指令sql (ddl 資料定義語句(建立表) dml(資料操作語言 update,insert delete) dql(select查詢) dtl(資料事務語句 rollback ...) )    $sql = "select * from user1";        //mysql_query函數返回結果集    $res = mysql_query($sql,$conn);    //var_dump($res);    //5、接收返回結果並處理    while($row=mysql_fetch_row($res)){        //第一種取法        //$row是一個數組        //var_dump($row);        //echo $row[0]."-".$row[1]."-".$row[2]."-".$row[3]."-".$row[4];        //echo "<br/>";        //第二種取法        foreach($row as $key=>$val){            echo "-$val";        }        echo "<br/>";    }    //6、釋放資源,關閉串連    mysql_free_result($res);    //關閉資料庫可以沒有,建議寫    mysql_close($conn);?

 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.