Table of Contents
Complete implementation method of database data retrieval example for CI framework, ci framework
How to insert a form into the database in the ci framework
The CI framework has been connected to a database. Now I have a controller that operates another database. How do I connect to this database?
Home Backend Development PHP Tutorial CI framework entry example: complete implementation method of database data retrieval, ci framework_PHP tutorial

CI framework entry example: complete implementation method of database data retrieval, ci framework_PHP tutorial

Jul 13, 2016 am 10:15 AM
ci framework controller

Complete implementation method of database data retrieval example for CI framework, ci framework

The example in this article describes the complete implementation method of database data retrieval as an entry-level example of CI framework. It is written for beginners. This is the simplest example that can be adjusted. Share it with everyone for your reference. The specific implementation method is as follows:

1. Download CI framework

2. Configuration

database.php configuration:

Set connection parameters for the database server:

Copy code The code is as follows:
$db['default']['hostname'] = "your-db-host";
$db['default']['username'] = "your-username";
$db['default']['password'] = "your-password";
$db['default']['database'] = "your-db-name";
$db['default']['dbdriver'] = "mysql";

3. Create a table

Copy code The code is as follows:
CREATE TABLE IF NOT EXISTS `users` ( ​​
`id` INT(8) NOT NULL AUTO_INCREMENT,
`name` VARCHAR(30) CHARACTER SET utf8 DEFAULT NULL,
`age` VARCHAR(3) CHARACTER SET utf8 DEFAULT NULL,
`sex` VARCHAR(2) CHARACTER SET utf8 DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_estonian_ci AUTO_INCREMENT=14 ;

Just fill in a few pieces of data yourself

4. Implement MVC
1) Implement M--get data
Create a new file mtest.php
under CI’s models

Copy code The code is as follows:
class Mtest extends CI_Model{
Function Mtest(){
         parent::__construct(); 
}  
Function get_last_ten_entries()
                                                   $this->load->database();
mysql_query("SET NAMES GBK"); //Prevent Chinese garbled characters
$query = $this->db->get('users', 10);
          return $query->result();
}  
}
?>
Description:
parent::__construct(); essential

$this->load->database(); must be indispensable otherwise an error will be reported
It is also possible to implement an "auto-connect" function, which will automatically instantiate the database class every time a page is loaded. To enable "auto-connection", add database to the library array in the following file:
application/config/autoload.php
Otherwise it would be written on every page like here.
You can also use

to copy the code . The code is as follows:
$query = $this->db->query('select * from users') ;
Write your own SQL like this

2) Implement C--Determine which data to retrieve
Create a new file test.php
under CI controllers
Copy code The code is as follows:
class Test extends CI_Controller {
function Test(){
parent::__construct();
}
function index(){
$this->load->helper('form');
$data['title'] = "Homepage";
$data['headline'] = "Enter user information";
//Multidimensional array
$data['todo_list'] = array('Clean House', 'Call Mom', 'Run Errands');
//$this->load->vars($data);
$this->load->model('mtest');
$data['query1'] = $this->mtest->get_last_ten_entries();
$this->load->view('users',$data);
//$this->load->view('newfile');
//$this->load->view('a/newfile');
}
}
?>
Call model:
Copy code The code is as follows:
$this->load->model('mtest');
Load the model into the array:
Copy code The code is as follows:
$data['query1'] = $this->mtest-> get_last_ten_entries();

Reprint the array to the page:
Copy the code The code is as follows:
$this->load->view('users',$data );

2) Implement V--page display
Create a new file user.php

under CI’s views

Copy code The code is as follows:

<? echo $title;?>








    foreach ($query1 as $v1) {
    foreach ($v1 as $v2) {
    echo "$v2n";
    }  
    }
    for ($row=0;$row echo $query1[$row]->name."
    ";
    }
    ?>


  • name;?>






Note: You can use For and Foreach methods to find the data you want!
Note: If the entire page is garbled, the header of the web page will probably look like this.
Copy code The code is as follows:

If you are not using CI to connect to the database, add the following code in the database connection section.
Copy code The code is as follows:
mysql_query("SET NAMES GBK"); //Prevent Chinese garbled characters
mysql_query("set names utf8;");//Add after mysql_select_db("");.
//To prevent Chinese garbled characters, it depends on your database character set

database.php file under CI config
Copy code The code is as follows:
$db['default']['char_set'] = 'utf8'; //utf8. Database character set Also utf8
$db['default']['dbcollat'] = 'utf8_general_ci';

I hope this article will be helpful to everyone’s learning of CI framework programming.

How to insert a form into the database in the ci framework

$this->input->post(); Get the form data
Then $this->db->insert(table name, $data); insert into the database

The CI framework has been connected to a database. Now I have a controller that operates another database. How do I connect to this database?

Reconfigure database settings $this->db->databse($config);
$config is an array containing
$config['host'] = ''
$config ['database'] = ''
For configuration, please refer to the configuration file database.php
in CI

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/906671.htmlTechArticleComplete implementation method of database retrieval example for CI framework Get the complete implementation method of data. It is written for beginners, this...
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to properly calibrate your Xbox One controller on Windows 11 How to properly calibrate your Xbox One controller on Windows 11 Sep 21, 2023 pm 09:09 PM

Since Windows has become the gaming platform of choice, it's even more important to identify its gaming-oriented features. One of them is the ability to calibrate an Xbox One controller on Windows 11. With built-in manual calibration, you can get rid of drift, random movement, or performance issues and effectively align the X, Y, and Z axes. If the available options don't work, you can always use a third-party Xbox One controller calibration tool. Let’s find out! How do I calibrate my Xbox controller on Windows 11? Before proceeding, make sure you connect your controller to your computer and update your Xbox One controller's drivers. While you're at it, also install any available firmware updates. 1. Use Wind

How to use CI framework in php? How to use CI framework in php? Jun 01, 2023 am 08:48 AM

With the development of network technology, PHP has become one of the important tools for Web development. One of the popular PHP frameworks - CodeIgniter (hereinafter referred to as CI) has also received more and more attention and use. Today, we will take a look at how to use the CI framework. 1. Install the CI framework First, we need to download the CI framework and install it. Download the latest version of the CI framework compressed package from CI's official website (https://codeigniter.com/). After the download is complete, unzip

Learning Laravel from scratch: Detailed explanation of controller method invocation Learning Laravel from scratch: Detailed explanation of controller method invocation Mar 10, 2024 pm 05:03 PM

Learning Laravel from scratch: Detailed explanation of controller method invocation In the development of Laravel, controller is a very important concept. The controller serves as a bridge between the model and the view, responsible for processing requests from routes and returning corresponding data to the view for display. Methods in controllers can be called by routes. This article will introduce in detail how to write and call methods in controllers, and will provide specific code examples. First, we need to create a controller. You can use the Artisan command line tool to create

What is laravel controller What is laravel controller Jan 14, 2023 am 11:16 AM

In laravel, a controller (Controller) is a class used to implement certain functions; the controller can combine related request processing logic into a separate class. Some methods are stored in the controller to implement certain functions. The controller is called through routing, and callback functions are no longer used; the controller is stored in the "app/Http/Controllers" directory.

How to use CodeIgniter4 framework in php? How to use CodeIgniter4 framework in php? May 31, 2023 pm 02:51 PM

PHP is a very popular programming language, and CodeIgniter4 is a commonly used PHP framework. When developing web applications, using frameworks is very helpful. It can speed up the development process, improve code quality, and reduce maintenance costs. This article will introduce how to use the CodeIgniter4 framework. Installing the CodeIgniter4 framework The CodeIgniter4 framework can be downloaded from the official website (https://codeigniter.com/). Down

How to use CI framework in PHP How to use CI framework in PHP Jun 27, 2023 pm 04:51 PM

PHP is a popular programming language that is widely used in web development. The CI (CodeIgniter) framework is one of the most popular frameworks in PHP. It provides a complete set of ready-made tools and function libraries, as well as some popular design patterns, allowing developers to develop Web applications more efficiently. This article will introduce the basic steps and methods of developing PHP applications using the CI framework. Understand the basic concepts and structures of the CI framework. Before using the CI framework, we need to understand some basic concepts and structures. Down

Laravel Study Guide: Best Practices for Controller Method Calls Laravel Study Guide: Best Practices for Controller Method Calls Mar 11, 2024 am 08:27 AM

In the Laravel learning guide, calling controller methods is a very important topic. Controllers act as a bridge between routing and models and play a vital role in the application. This article will introduce the best practices for controller method calling and provide specific code examples to help readers better understand. First, let's understand the basic structure of controller methods. In Laravel, controller classes are usually stored in the app/Http/Controllers directory. Each controller class contains multiple

How to use CI4 framework in php? How to use CI4 framework in php? Jun 01, 2023 pm 02:40 PM

PHP is a widely used server-side scripting language, and CodeIgniter4 (CI4) is a popular PHP framework that provides a fast and excellent way to build web applications. In this article, we will get you started using the CI4 framework to develop outstanding web applications by walking you through how to use it. 1. Download and install CI4 First, you need to download it from the official website (https://codeigniter.com/downloa

See all articles