CodeIgniter 프레임 워 크 데이터베이스 기본 조작 예시

본 고의 실례 는 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 표를 만 드 는 데 사용 할 수 없습니다.이것 은 제 소스 패키지 에 있 습 니 다.직접 가 져 올 수 있 으 면 좋 겠 습 니 다.하지만 데모 데이터 베 이 스 를 만 드 는 것 이 전제 입 니 다.
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>

효과 도 는 다음 과 같다

이렇게 그 안에 검증 이 라 니 요?교정 같은 건 안 했 어 요.데이터 베 이 스 를 연습 하 는 기본 적 인 작업 만 했 어 요.
더 많은 CodeIgniter 관련 내용 에 관심 이 있 는 독자 들 은 본 사이트 의 주 제 를 볼 수 있다.
본 고 에서 말 한 것 이 여러분 이 CodeIgniter 프레임 워 크 를 바탕 으로 하 는 PHP 프로 그래 밍 에 도움 이 되 기 를 바 랍 니 다.

좋은 웹페이지 즐겨찾기