CodeIgniter架構資料庫基本操作

來源:互聯網
上載者:User
本文執行個體講述了CodeIgniter架構資料庫基本操作。分享給大家供大家參考,具體如下:

現在開始,首先現在CI架構到自己的伺服器目錄下並配置config/config.php

$config['base_url'] = 'http://localhost:90/CI/';

接著下來設定資料庫在config/databases.php我做練習配置如下

$db['default']['hostname'] = 'localhost';$db['default']['username'] = 'root';$db['default']['password'] = 'root';$db['default']['database'] = 'demo';$db['default']['dbdriver'] = 'mysql';

別的現在新手用不到緊接著建立一個資料庫和一個user表,這個在我的源碼包裡面有你可以直接匯入就好了,但是前提你要建立一個demo的資料庫

reg類代碼如下

<?php/*************************************** * 使用者註冊模組和資料庫的基本操作實踐 * 17:44 2013.2.18 * @Author sdeep wang ***************************************/class Reg extends CI_Controller{  function __construct(){//此函數每次必須寫是繼承父類的方法    parent::__construct();    $this->load->database();//這個是串連資料庫的方法,放到這裡的好處只要調用該方法就會串連資料庫  }  function index(){    $this->load->view('reg_view');//這個是使用哪個視圖來顯示相當於Smarty中的display  }  function reg_insert(){    $data['name'] = $this->input->post('name');//這個是指取得POST數組的值然後賦值一個心的數組    $data['sex'] = $this->input->post('sex');    $data['age'] = $this->input->post('age');    $data['pwd'] = md5($this->input->post('pwd'));//這裡用了一個md5加密只是為了示範    $data['email'] = $this->input->post('email');    $this->db->insert('user',$data);//這個是資料庫操作插入操作    redirect('/reg/reg_select/', 'refresh');//這個是跳轉函數是url輔助函數裡面的一個方法  }  function reg_select(){//這個查詢資料庫的方法    $this->db->select('id,name,sex,age,email');//這裡是查詢要顯示的欄位,可不能像我第一次這樣寫啊$this->db->select('id','name','sex','age','email');    $data['query'] = $this->db->get('user');//這個是取得資料(如果你上面寫的和我第一次一樣的話只能取的一個欄位)    $this->load->view('select_view',$data);//這裡是調用哪個視圖並分配資料給指定視圖顯示  }  function reg_delete(){//刪除資料的操作    $id = $this->input->get('id');//這裡是取得get傳過來的值    $this->db->where('id',$id);//這裡是做where條件這個相當重要,如果沒有這個你有可能把這個表資料都清空了    $this->db->delete('user');//刪除指定id資料    redirect('/reg/reg_select/', 'refresh');//同上跳轉  }  function reg_update(){//跟新資料的操作    $data['id'] = $this->input->get('id');//同上取的get傳值過來的ID    $this->load->view('update_view',$data);//同上調用視圖分配資料  }  function reg_com_update(){//這個是真正的跟新資料操作方法    $id = $this->input->post('id');//同上取得post中的id值    $data = array(//把post數組的值封裝到新的數組中為了下面跟新操作用          'name'=>$this->input->post('name'),          'pwd'=>md5($this->input->post('pwd')),          'email'=>$this->input->post('email' )        );    if(!empty($id) && (count($data) > 1)){//判斷id值是否傳過來並且判斷封裝的數組是否有元素存在      $this->db->where('id',$id);//同上準備where條件      $this->db->update('user',$data);//跟新操作    }    redirect('/reg/reg_select/', 'refresh');//同上跳轉  }}?>

視圖代碼如下

<html>  <head>    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />    <title>使用者註冊</title>  </head>  <body>    <form action="<?php echo site_url('reg/reg_insert/'); ?>" method="post">      <table>        <tr>          <td>            姓名:<input type="text" name="name" />          </td>        </tr>        <tr>          <td>            姓別:<input type="radio" name="sex" value="1" />男               <input type="radio" name="sex" />女          </td>        </tr>        <tr>          <td>            年齡:<input type="text" name="age" />          </td>        </tr>        <tr>          <td>            密碼:<input type="password" name="pwd" />          </td>        </tr>        <tr>          <td>            郵件:<input type="text" name="email" />          </td>        </tr>        <tr>          <td>            <input type="submit" value="註冊" />            <input type="reset" value="重設" />          </td>        </tr>      </table>    </form>  </body></html>

第二個視圖代碼如下

<html>  <head>    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />    <title>顯示資料庫中的所有註冊使用者</title>    <style>      *{        margin:0 auto;      }      table {        border:1px solid gray;        border-collapse: collapse;        width:500px;        text-align:center;      }      th,td {        border:1px solid gray;      }    </style>  </head>  <body>    <table>      <caption><h3>註冊使用者的顯示</h3></caption>      <tr>        <th>ID</th>        <th>Name</th>        <th>Sex</th>        <th>Age</th>        <th>Email</th>        <th>Operate</th>      </tr>      <?php foreach($query->result() as $item):?>      <tr>        <td><?php echo $item->id; ?></td>        <td><?php echo $item->name; ?></td>        <td><?php echo $item->sex; ?></td>        <td><?php echo $item->age; ?></td>        <td><?php echo $item->email; ?></td>        <td>          <a href="<?php echo site_url('reg/reg_delete');?>?id=<?php echo $item->id;?>" rel="external nofollow" >刪除</a> |          <a href="<?php echo site_url('reg/reg_update');?>?id=<?php echo $item->id;?>" rel="external nofollow" >修改</a>        </td>      </tr>      <?php endforeach; ?>    </table>  </body></html>第三個視圖如下<html>  <head>    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />    <title>修改使用者註冊資訊</title>  </head>  <body>    <form action="<?php echo site_url('reg/reg_com_update');?>" method="post">      <table>        <tr>          <td>姓名:<input type="text" name="name" /></td>        </tr>        <tr>          <td>密碼:<input type="password" name="pwd" /></td>        </tr>        <tr>          <td>郵件:<input type="text" name="email" /></td>        </tr>        <tr>          <td>            <input type="submit" value="修改" />            <input type="hidden" name="id" value="<?php echo $id; ?>" />          </td>        </tr>      </table>    </form>  </body></html>

如下

相關文章

聯繫我們

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