Home php教程 PHP开发 CI Framework Notes 2

CI Framework Notes 2

Dec 29, 2016 am 09:38 AM
ci framework

1,

<input type="radio" name="type" value="0" <?php echo set_radio(&#39;type&#39;,&#39;0&#39;,TRUE)?> />普通
<input type="radio" name="type" value="0" <?php echo set_radio(&#39;type&#39;,&#39;0&#39;,TRUE)?>/>情感
Copy after login

2,

<select name="cid" id="">
<option value="1" <?php echo set_select(&#39;cid&#39;,&#39;1&#39;,TRUE)?>>情感</option> 注意:TRUE意思是默认选中的;1是值
<option value="0" <?php echo set_select(&#39;cid&#39;,&#39;2&#39;)?>>生活</option>
</select>
Copy after login

3,

<a href=" <?php echo site_url(&#39;admin/admin/index&#39;)?>">
Copy after login

4, Operation database model

//添加动作
public function add(){
$this->load->library("form_validation");
$status = $this->form_validation->run(&#39;cate&#39;);
if($status){
//操作模型;
$this -> load -> model( "category_model" ); model( "category_model","cate");给模型起个别名
$data = array(
&#39; cname&#39; => $_POST[&#39;cname&#39;],
);
$this -> category_model -> add($data); //执行到模型中的添加方法
}else{
$this->load->helper("form");
$this -> load->view(" admin/add_cate.html");
}
//注意:模型model是建在application/models/的这个目录下面;
<?php
//栏目管理模型 配置数据库是在 application/config/database.php去配置下 此处时model层
class Category_model extends CI_Model {
//添加
public function add ($data){
//使用AR模型
$this -> db -> insert(&#39;category&#39;,$data);
}
}
?>
}
/**
* 开启AR模型 一般文章管理系统会使用到AR模型
*/
$active_record = TRUE; //可以直接在控制器中$this -> db -> insert();
Copy after login

5, When an error occurs, the return method of bool input class is safer to use.

$this -> input -> post("abc"); 以post的方式接收
$this -> input -> get("abc"); 以get的方式接收
¥this -> input -> server("name");
Copy after login

6. The global function is edited and defined in system/core/common.php

7 , Function definition in common.php

//定义成功的提示函数
function success($url , $msg){
heard(&#39;Content-type:text/html;charset=utf-8&#39;);
$url = site_url($url);
echo "<script type=&#39;text/javascript&#39;>alert(&#39;$msg&#39;);location.hrerf=&#39;$url&#39;</script>";
die; 
}
function error($msg){
heard(&#39;Content-type:text/html;charset=utf-8&#39;);
echo "<script type=&#39;text/javascript&#39;>window.history.back();</script>";
}
Copy after login

8, Debug mode

$this -> output -> enable_profiler(TRUE);
Copy after login

The above is the content of CI Framework Note 2, more related Please pay attention to the PHP Chinese website (www.php.cn) for content!


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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Roblox: Bubble Gum Simulator Infinity - How To Get And Use Royal Keys
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Nordhold: Fusion System, Explained
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Mandragora: Whispers Of The Witch Tree - How To Unlock The Grappling Hook
3 weeks 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)

Hot Topics

Java Tutorial
1673
14
PHP Tutorial
1278
29
C# Tutorial
1257
24
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

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

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

A guide to CI frameworks in PHP A guide to CI frameworks in PHP May 22, 2023 pm 07:10 PM

With the development of the Internet and its continuous integration into people's lives, the development of network applications has become more and more important. As a well-known programming language, PHP has become one of the preferred languages ​​for developing Internet applications. Developers can use numerous PHP frameworks to simplify the development process, one of the most popular is the CodeIgniter (CI) framework. CI is a powerful PHP web application framework. It has the characteristics of lightweight, easy to use, optimized performance, etc., allowing developers to quickly build

How to introduce css into ci framework How to introduce css into ci framework Dec 26, 2023 pm 05:20 PM

The steps to introduce CSS styles in the CI framework are as follows: 1. Prepare CSS files; 2. Store the CSS files in the appropriate location of the CI framework project; 3. In the pages that need to use CSS styles, introduce CSS through the HTML <link> tag File; 4. Use the CSS class or ID name in the HTML element to apply the corresponding style.

Detailed explanation of the steps to reference CSS styles in the CI framework Detailed explanation of the steps to reference CSS styles in the CI framework Jan 16, 2024 am 09:28 AM

Tutorial: Detailed steps for introducing CSS styles in the CI framework, specific code examples are required Introduction: Style is a crucial part of developing web applications. Use CSS (Cascading Style Sheets) to beautify web pages and provide a better user experience. When developing using the CodeIgniter (CI) framework, how to correctly introduce CSS styles is particularly important. This article will introduce the detailed steps of introducing CSS styles in the CI framework and provide you with specific code examples. Step 1: Create CSS File First,

Steps to introduce CSS styles to web pages using CI framework Steps to introduce CSS styles to web pages using CI framework Jan 16, 2024 am 09:20 AM

The steps for introducing CSS styles in the CI framework require specific code examples. The CI (CodeIgniter) framework is a popular PHP development framework that is widely used to build efficient web applications. When developing web applications, a beautiful user interface is an important consideration. Using CSS styles can optimize and personalize the web application interface, giving users a better experience. In a CI framework, introducing CSS styles usually requires the following steps, accompanied by specific code examples. step 1:

How to use CI6 framework in php? How to use CI6 framework in php? Jun 01, 2023 pm 11:10 PM

PHP is a very popular web development language, and CodeIgniter (CI) is a very popular PHP framework. CodeIgniter provides many useful functions and features, bringing great convenience to developers. In this article, we will explore how to use the CI6 framework. Installing CI6 Before you can start using CI6, you must first complete the installation process. You need to first download the CI6 compressed package from the CodeIgniter official website. Then, unzip this file and place it in

See all articles