表单:
form: method="传输方式post/get".action="服务器文件"
input: type="text/password:文本/密码输入框" name ="名称:已备后台程序运用" value=‘文本输入框设置默认值:一般起提示作用’
textarea :cols:列 rows:行
input: type='radio/checkbox:单选框/复选框' value=提交数据到服务器的值
name:为控件命名,以备后台程序运用。checked='checked':默认选中;
select:下拉列表
option: value=提交数据到服务器的值
selected='selected'默认选中
multiple='multiple':多选
提交/重置按钮:
input: type='submit' value='提交':按钮上显示都字
input: type='reser' value='z重置':
label: for="控件id名称";
1.后台:文章发布系统:
(1)文章发布程序
(2)文章修改程序
(3)文章删除程序
(4)文章管理列表
2.前台:前台展示系统:
(1)文章列表
(2)文章内容页
3.数据库
后台文件:
创建配置文件和初始化文件:
(1)配置文件:config.php
<?php
header("Content-type;text/htmll;charset=utf-8");
define('HOST','127.0.0.1');//定义常量
define( 'USERNAME,''root');
define('PASSWORD','123');
?>
<?php
//链接数据库
require_once('../connect.php')
//把传递过来的信息入库,在入库之前对所有信息进行校验
$_POST获取界面传来的信息
$title=$_POST['title']
$author=$_POST['author']
$description=$_POST['description']
$content=$_POST['content']
$dateline=time();
insert into article(title,author,description,content,dateline,values('$title','$author',...))
mysql_query($insertsql);
vcccc
?>
(2)mysql初始化程序文件编写:connect.php
<?php
require_once('config.php');
//链接数据库
if(!($con=mysql_connect(HOST,USERNAME,PASSWORD)))
{
echo mysql_error();
}
//选择数据库
if(!mysql_select_db('info')){
echo mysql_error;
}
//字符集
if(!mysql_query('ser names utf8')){
echo mysql_error();
}
?>
2024 - 快车库 - 我的知识库 重庆启连科技有限公司 渝ICP备16002641号-10
企客连连 表单助手 企服开发 榜单123