• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

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

php 搞代码 4年前 (2022-01-23) 107次浏览 已收录 0个评论

一.创建模板:

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

例子:

源html:

   <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> test <body>  

Name: Mr

This is the foot of the document

复制的头部:header.html:

   <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> test <body> 

复制的尾部:footer.html:

This is the foot of the document

合成模板:ws.php

<?phprequire('header.html');?> 

Name: Mr

<?phprequire('footer.html');?>

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

使用条件语句:

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

else { 显示表单 }

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

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

显示:登陆成功

裁图:

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

<?phpdefine('TITLE', 'Login');require('header.html');if (isset($_POST['submitted'])) {	if ((!empty($_POST['name'])) && (!empty($_POST['password']))){		if ((strtolower($_POST['name']) == 'yf') && ($_POST['password'] == '123456')){// name and password are correct.			print '

logged in !

'; } else { print '

name or password is worry!

'; } } else { print '

make sure you enter both name and password8本文来源gao.dai.ma.com搞@代*码(网$

搞代gaodaima码

!

'; }}else { print '

Name:

Password:

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


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:php基础教程–2创建模板、处理表单

喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址