帝国CMS模板中电影模型内容页调用播放器类型

帝国cms模板中电影模型内容页调用播放器类型的几种方法!

  一、以图片形式显示

  1、在/skin/xin/v/中增加几个播放器的图片

  ①图片格式自己定,如:增加了ico的格式,在:系统-系统设置-系统参数设置-文件设置-后台上传文件扩展名-添加ico的图片格式

  ②图片的命名:以播放器的ID命名(ID参考:后台-其他-下载模型相关-播放器管理-看播放器对应的ID号)

  2、在内容页适当位置插入以下代码

  播放器类型:<img border=”0″ src=”/skin/xin/v/[!–playerid–].gif” />

  注释:① /skin/xin/v/ 这个文件路径可自定义

  ② [!–playerid–].gif 为播放器的ID+图片格式

  二、以名称形式显示

  方法1:灵动标签调用

[e:loop={"select * from phome_enewsplayer where id='$navinfor[playerid]'",0,24,0}]
播放器类型:<?=$bqr[player]?>
[/e:loop]

  方法2:灵动标签双表查询–enewsplayer(播放器表)和ecms_movie_data_1(电影模型副表)

[e:loop={"select a.*,b.* from [!db.pre!]enewsplayer a,[!db.pre!]ecms_movie_data_1 b where a.id=b.playerid and b.classid='$navinfor[classid]' and b.id='$navinfor[id]'",0,24,0}]
播放器类型:<?=$bqr[player]?>
[/e:loop]

  方法3:php调用

<?php
$p=$empire->fetch1("select * from phome_enewsplayer where id='$navinfor[playerid]'");
?>
播放器名称:<?=$p[player]?>