CodeIgniter 프레임 워 크 데이터베이스 기본 조작 예시
9076 단어 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 프로 그래 밍 에 도움 이 되 기 를 바 랍 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
PostgreSQL: Java 는 CopyManager 를 사용 하여 클 라 이언 트 파일 COPY 가 져 오기 를 실현 합 니 다.MySQL 에 서 는 LOAD DATA INFILE 과 LOAD DATA LOCAL INFILE 두 가지 방식 으로 텍스트 파일 의 데 이 터 를 데이터베이스 시트 에 가 져 올 수 있어 속도 가 매우 빠르다.이 중...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.