Table of Contents
=$value['title']?>
Home php教程 php手册 [PHP]使用CodeIgniter快速搭建博客框架

[PHP]使用CodeIgniter快速搭建博客框架

Jun 06, 2016 pm 07:57 PM
codeigniter php use blog fast build frame

相关链接: 关于CodeIgniter的入门请参照这篇文章:[PHP]框架教程:CodeIgniter框架的简易使用 使用的平台是 SAE :[SAE]免费服务器:新浪云服务器SAE的注册与使用 BAE中的MySQL使用:[PHP]如何在百度(BAE)和新浪(SAE)的云平台使用PHP连接MySQL并返回结果数

相关链接:

关于CodeIgniter的入门请参照这篇文章:[PHP]框架教程:CodeIgniter框架的简易使用

使用的平台是SAE:[SAE]免费服务器:新浪云服务器SAE的注册与使用

BAE中的MySQL使用:[PHP]如何在百度(BAE)和新浪(SAE)的云平台使用PHP连接MySQL并返回结果数据


1.首先是控制器部分,Blog.php作为Controller即控制器:

<?php header('Content-Type:text/html;charset=utf-8');
class Blog extends CI_Controller {
	function __construct()
	{
		//继承父类的构造方法,不写报错
		parent::__construct();
	
		//加载框架中的相关helper
		$this->load->helper('url');
		$this->load->helper('form');
	}

	function index(){
		//为即将跳转的页面设置相关数据
		$data['title']="My Blog Title";
		$data['heading']="My Blog Heading";
		$data['todo']=array('eat','sleep','call');

		//连接数据库并返回查询结果
		$sql = "SELECT * FROM `Entries` LIMIT 0, 30 ";
		//初始化MySQL数据库
		$mysql= new SaeMysql();
		$sqlData = $mysql->getData($sql);

		//将数据库的结果传入data中
		$data['query']=$sqlData;

		//使用变量$data向目标网页传入数据
		$this->load->view('blog_view',$data);
	}

	function comments(){
		//为即将跳转的页面设置相关数据
		$data['title']="My Comment Title";
		$data['heading']="My Comment Heading";

		//连接数据库并返回查询结果
		$sql = "SELECT * FROM `Comments` where `entry_id`=".$this->uri->segment(3);

		//初始化MySQL数据库
		$mysql= new SaeMysql();
		$sqlData = $mysql->getData($sql);

		//将数据库的结果传入data中
		$data['query']=$sqlData;

		//使用变量$data向目标网页传入数据
		$this->load->view('comment_view',$data);
	}

	function comment_insert(){
		//插入POST提交的评论数据到MySQL中
		$sql = "INSERT INTO `Comments` (`entry_id`, `body`, `author`) 
                        VALUES ('".$_POST['entry_id']."', '".$_POST['body']."', '".$_POST['author']."');";   
		//初始化MySQL数据库
		$mysql= new SaeMysql();
		$mysql->runSql($sql);
		redirect('blog/comments/'.$_POST['entry_id']);

	}
}

?>
Copy after login

2.接下来是View即视图部分,blog_view是博客列表的视图:

<title><?php echo $title?></title>


<h1><?php echo $heading?></h1>

<?php //输出从数据库中读取到的文章列表
foreach($query as $key=>$value): ?>
<h3 id="value-title-gt">=$value['title']?></h3>
<p>=$value['body']?></p>
<p>=anchor('blog/comments/'.$value['id'],'Comments')/*插入评论的超链接*/?></p>
<hr>
<?php endforeach; ?>


Copy after login

comment_view是评论列表的内容:

<title><?php echo $title?></title>


<h1><?php echo $heading?></h1>


<?php if(count($query)>0): /*确保有数据返回*/?>
	<?php //输出从数据库中读取到的文章列表
	foreach($query as $key=>$value): ?>
	<p>=$value['body']?></p>
	<p>=$value['author']?></p>
	<hr>
	<?php endforeach; ?>
<?php endif; ?>



<p>=anchor('blog','Back to Blog')/*返回博客页面*/?></p>

/*提交表单,跳转到blog的comment_insert方法*/?>
=form_open('blog/comment_insert');?>
=form_hidden('entry_id',$this->uri->segment(3));?>
<p><textarea name="body" rows="10"></textarea></p>
<p><input type="text" name="author"></p>
<p><input type="Submit" value="Submit"></p>




Copy after login

效果图

[PHP]使用CodeIgniter快速搭建博客框架

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 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 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)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

CakePHP Working with Database CakePHP Working with Database Sep 10, 2024 pm 05:25 PM

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

See all articles