示例#1
0
<?php

require 'global.php';
$tpl_vars = array('page_name' => 'vedio_list');
output_tpl('vedio_list', $tpl_vars);
示例#2
0
文件: dianbo.php 项目: h3len/Project
<?php

require 'global.php';
$tpl_vars = array('page_name' => 'dianbo');
output_tpl('dianbo', $tpl_vars);
示例#3
0
文件: video.php 项目: h3len/Project
<?php

require 'global.php';
$tpl_vars = array('page_name' => 'video');
output_tpl('video', $tpl_vars);
示例#4
0
文件: live.php 项目: h3len/Project
<?php

require 'global.php';
$tpl_vars = array('page_name' => 'live');
output_tpl('live', $tpl_vars);
示例#5
0
文件: photo.php 项目: h3len/Project
<?php

require 'global.php';
$tpl_vars = array('page_name' => 'photo');
output_tpl('photo', $tpl_vars);
示例#6
0
文件: vedio.php 项目: h3len/Project
<?php

require 'global.php';
$tpl_vars = array('page_name' => 'vedio');
output_tpl('vedio', $tpl_vars);
示例#7
0
文件: index.php 项目: h3len/Project
<?php

require 'global.php';
$tpl_vars = array('page_name' => 'index');
output_tpl('index', $tpl_vars);
示例#8
0
文件: news.php 项目: h3len/Project
<?php

require 'global.php';
function get_page_name($cond = '')
{
    return $cond ? 'news_list' : 'news';
}
$tpl_vars = array('page_name' => get_page_name($_INPUT['sort']));
output_tpl($tpl_vars['page_name'], $tpl_vars);