用thinkphp串連mysql資料庫

來源:互聯網
上載者:User

標籤:

一、設定mysql資料庫的參數

thinkphp\Application\Home\Conf\config.php

<?phpreturn array(    //‘配置項‘=>‘配置值‘        ‘DB_TYPE‘               =>  ‘mysql‘,     // 資料庫類型        ‘DB_HOST‘               =>  ‘localhost‘, // 伺服器位址        ‘DB_NAME‘               =>  ‘mydb‘,          // 資料庫名        ‘DB_USER‘               =>  ‘root‘,      // 使用者名稱        ‘DB_PWD‘                =>  ‘123‘,          // 密碼        ‘DB_PORT‘               =>  ‘3306‘,        // 連接埠        ‘DB_PREFIX‘             =>  ‘‘,    // 資料庫表首碼        ‘DB_PARAMS‘              =>  array(), // 資料庫連接參數        ‘DB_DEBUG‘              =>  TRUE, // 資料庫偵錯模式 開啟後可以記錄SQL日誌        ‘DB_FIELDS_CACHE‘       =>  true,        // 啟用欄位緩衝        ‘DB_CHARSET‘            =>  ‘utf8‘,      // 資料庫編碼預設採用utf8        ‘DB_DEPLOY_TYPE‘        =>  0, // 資料庫部署方式:0 集中式(單一伺服器),1 分布式(主從伺服器)        ‘DB_RW_SEPARATE‘        =>  false,       // 資料庫讀寫是否分離 主從式有效        ‘DB_MASTER_NUM‘         =>  1, // 讀寫分離後 主伺服器數量        ‘DB_SLAVE_NO‘           =>  ‘‘ // 指定從伺服器序號);

 

二、編寫串連資料庫的代碼

本樣本是查詢city表的第一行記錄的cityname欄位,然後將cityname欄位的內容顯示在頁面上

thinkphp\Application\Home\Controller\Demo1Controller.class.php

<?phpnamespace Home\Controller;use Think\Controller;class Demo1Controller extends Controller {    public function index(){            $user = M("city")->select();            $this->assign(‘cityname‘,$user[0][‘cityname‘]);            $this->display();        }}

 

thinkphp\Application\Home\View\Demo1\index.html

<!DOCTYPE html><html><head><meta charset="UTF-8"><title>Insert title here</title></head><body>Hello,{$name}!</body></html>

 

三、查詢一個表,並且顯示表中的資料

thinkphp\Application\Home\Controller\Demo1Controller.class.php

<?phpnamespace Home\Controller;use Think\Controller;class Demo1Controller extends Controller {    public function index(){        $user = M("city")->select();         $this->assign(‘list‘,$user);               $this->display();    }}

 

thinkphp\Application\Home\View\Demo1\index.html

<!DOCTYPE html><html><head><meta charset="UTF-8"><title>Demo1</title></head><body><table width="100%" border="1" cellspacing="0" cellpadding="0">  <tr>      <td>序號</td>    <td>城市</td>    <td>省會</td>    <td>描述</td>  </tr>  <foreach name="list" item="item" key="index">  <tr>      <td>{$index+1}</td>    <td>{$item.cityname}</td>    <td>{$item.province}</td>    <td>{$item.citydesc}</td>  </tr>  </foreach></table></body></html>

foreach是thinkphp內建的標籤

用thinkphp串連mysql資料庫

相關文章

聯繫我們

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