Blogger Information
Blog 42
fans 0
comment 0
visits 36454
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
php知识点笔记
庆选的博客
Original
606 people have browsed it

1、制作公共模板

    1、将公共模板设置编写好,在公共文件中将所需要数据向数据库查询

    2、在需要用到公共模板得文件引用  include .'/header.php'


其中include.代表文件所在的路径。

若公共文件和页面文件在同一文件夹下,则用 include .'/header.php'就可以引用 公共模板。

若不在同一目录下,则需要在'   '中指明路径


2、内容拼接

echo '序号:' .$v['comment_id'].' &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp'.'时间:'.$v['comment_time'];

小技巧:

1、先写好基础输出内容:如 echo $v['comment_id'].$v['comment_time'];

2、补充其他修饰文本,注意一个文本增加一对单引号或双引号

eg:

2.1、echo '序号:'.$v['comment_id'].'时间:'.$v['comment_time'];

2.2、

echo '序号:'.$v['comment_id'].' &nbsp'.'时间:'.$v['comment_time'];

3、传参

<a href='detail.php?mov_id=" .$movie['mov_id']. "'>{$movie['name']}</a>

意思:向同一路径下的detail.php传入变量mov_id,mov_id值为数组内内$movie['mov_id']   传入方式为get 

4、接收参数

$mov_id = $_GET["mov_id"];     //接收其他页面传入参数

$mov_id = intval($mov_id);      //将参数转化成对应类型  有int float chat等

将参数接入后,利用参数作为判断添加。渲染对应数据到前端中去

实例

<?php 
	include __DIR__ .'/header.php';
	

	$cate_id = $_GET["cate_id"];
	$cate_id = intval($cate_id);


	foreach ($cates as $cate) { 
		 if ($cate['cate_id'] === $cate_id) {
		 	echo "<h2>{$cate['alias']}</h2>";
		 	echo '<ol>';
		 	foreach ($movies as $movie) {
		 		if ($movie['cate_id'] === $cate_id) {
		 			echo "<li><a href='detail.php?mov_id=" .$movie['mov_id']. "'>{$movie['name']}</a></li>";
		 		}
		 	}
		 	echo '</ol>';
		 }
	}

	include __DIR__ .'/footer.php';

?>

运行实例 »

点击 "运行实例" 按钮查看在线实例




Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post