挤点时间写博客-php&MySQL实践,写博客-php
挤点时间写博客-php&MySQL实践,写博客-php
hi
晚上要吃火锅的嘛,挤点时间写点东西吧,别被老板发现哦
1、PHP与MySQL
五、文章发布系统之后台
5.2 创建配置文件和初始化文件
为了统一配置以及管理方便,还有就是减少代码的冗余。
分别为config.php和connect.php
config.php
/*
* 配置文件
*/
//配置数据库的相关信息
//由于是常量,直接用define
define('HOST', '127.0.0.1');
define('USERNAME', 'root');
define('PASSWORD', '');
connect.php
/*
* 链接到数据库的文件
* 主要是链接到数据库服务器,然后选择数据库。
* 特殊的是设置字符集。
* 然后希望对每个操作进行判断
*/
//包含配置文件
require_once 'config.php';
//连库
if(!$con=mysqli_connect(HOST,USERNAME,PASSWORD)){
echo mysqli_error($con);
}
//选库
if(mysqli_select_db($con, 'info')){
echo mysqli_error($con);
}
//字符集
if(mysqli_query($con,'set names utf8')){
echo mysqli_error($con);
}
完成后测试一下链接文件就ok了。这里的mysqli和mysql都可以,只要格式正确就行。
5.3 发布文章
文章发布界面article.add.php
后台管理系统 | |
|
|
版权所有 |
不是很漂亮就是了,学习嘛
文章发布处理程序article.add.handle.php
require_once('../connect.php');
//把传递过来的信息入库,在入库之前对所有的信息进行校验。
if(!(isset($_POST['title'])&&(!empty($_POST['title'])))){
echo "<script>alert('标题不能为空');window.location.href='article.add.php';</script>";
}
$title = $_POST['title'];
$author = $_POST['author'];
$description = $_POST['description'];
$content = $_POST['content'];
$dateline = time();
$insertsql = "insert into article(title, author, description, content, dateline) values('$title', '$author', '$description', '$content', $dateline)";
if(mysqli_query($con,$insertsql)){
echo "<script>alert('发布文章成功');window.location.href='article.manage.php';</script>";
}else{
echo "<script>alert('发布失败');window.location.href='article.manage.php';</script>";
}
?>
注意两者的功能和连接,就是add页面把东西传给handle处理
------------------------
由于我遇到了前所未见的乱码问题。。。跪着解决中。。。。望大家不吝赐教(wamp环境,mysql,zend,浏览器都已经设置为utf8,apache配置文件中添加了AddDefaultCharset UTF-8,问题依然存在,我晕啊。。。。)

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

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

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

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

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

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

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

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

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