欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php基础教程--2创建模板、处理表单

程序员文章站 2022-06-16 19:12:19
...
一.创建模板:

将页面中经常出现的部分复制到一个html或php文件中,在原页面中用require()/include()函数引入。

例子:

源html:

   test

Name:

This is the foot of the document


复制的头部:header.html:

   test

复制的尾部:footer.html:

This is the foot of the document


合成模板:ws.php

Name:



二、处理表单??让一个页面同时显示和处理表单

使用条件语句:

if (表单提交) { 处理表单 }

else { 显示表单 }


例子:简单的 用户名-密码验证


输入:用户名:YF 密码:123456

显示:登陆成功

裁图:




代码:ws.php(其中header.html、footer.html引用的是上文中的模板):

 logged in !';		}		else {			print '

name or password is worry!

'; } } else { print '

make sure you enter both name and password!

'; }}else { print '

Name:

Password:

'; }require('footer.html');?>