帝国cms分类信息发布的内容生产图片格式
放到e目录下
修改第16行
$r=$empire->fetch1("select dianhua,chuanzhen,dianziyouxiang from phome_ecms_zhaopin where id='$id'");
$r=$empire->fetch1("select 你要图片化的字段名 from 你要调用的数据表名 where id='$id'");
然后模板添加
<img src="[!--news.url--]e/key/zhaopin.php?key=dianziyouxiang&id=[!--id--]" /></img>
<img src="[!--news.url--]e/key/zhaopin.php?key=你要图片化的字段名&id=[!--id--]" /></img>
可以复制PHP文件改名来达到多个数据库的调用
<?php
@require("../class/connect.php");
if(!defined('InEmpireCMS'))
{
exit();
}
include("../class/db_sql.php");
include("../class/config.php");
$link=db_connect();
$empire=new mysqlquery();
//取得号码
function number($keys)
{
global $empire,$dbtbpre;
$id=$_GET[id];
$r=$empire->fetch1("select dianhua,chuanzhen,dianziyouxiang from phome_ecms_zhaopin where id='$id'");
$r[$keys]?$number=trim($r[$keys]):$number='No write..';
return $number;
}
//显示号码为图片
function ShowKey()
{
$keys=$_GET[key];
$number=number($keys);
$strlen=strlen($number);
$key=strtolower($number);
$imgW=$strlen*10;
$key=strtolower(number($keys));
$set=setcookie("checkplkey",$key,0,"/","");
//支持gd库
if (function_exists("imagejpeg")) {
header ("Content-type: image/jpeg");
$img=imagecreate($imgW,24);
$black=imagecolorallocate($img,51,51,51);
$gray=imagecolorallocate($img,255,255,255);
imagefill($img,0,0,$gray);
imagestring($img,5,5,3,$key,$black);
imagejpeg($img);
imagedestroy($img);
}
elseif (function_exists("imagegif")) {
header ("Content-type: image/gif");
$img=imagecreate(140,24);
$black=imagecolorallocate($img,51,51,51);
$gray=imagecolorallocate($img,255,255,255);
imagefill($img,0,0,$gray);
imagestring($img,5,5,3,$key,$black);
imagegif($img);
imagedestroy($img);
}
elseif (function_exists("imagepng")) {
header ("Content-type: image/png");
$img=imagecreate($imgW,24);
$black=imagecolorallocate($img,51,51,51);
$gray=imagecolorallocate($img,255,255,255);
imagefill($img,0,0,$gray);
imagestring($img,5,5,3,$key,$black);
imagepng($img);
imagedestroy($img);
}
elseif (function_exists("imagewbmp")) {
header ("Content-type: image/vnd.wap.wbmp");
$img=imagecreate($imgW,24);
$black=imagecolorallocate($img,51,51,51);
$gray=imagecolorallocate($img,255,255,255);
imagefill($img,0,0,$gray);
imagestring($img,5,5,3,$key,$black);
imagewbmp($img);
imagedestroy($img);
}
else {
include("../class/functions.php");
$set=setcookie("checkplkey","ecms",0,"/","");
echo ReadFiletext("../data/images/ecms.jpg");
}
}
ShowKey();
?>
免责声明:本站所有文章和图片均来自用户分享和网络收集,文章和图片版权归原作者及原出处所有,仅供学习与参考,请勿用于商业用途,如果损害了您的权利,请联系网站客服处理。
帝国CMS7.0对商城系统的功能进行了大更新,功能更完善2019-02-16
帝国cms内容页灵动标签调用当前栏目多篇文章并且排除2019-02-23
帝国CMS技巧:如何添加自定义字段和引用2019-02-14
帝国cms实现首页用灵动标签调用文章内容的方法2019-02-15
帝国CMS7.5版视频播放器更新,做视频站更方便2019-02-23
帝国cms如何导入模板2019-02-13
在帝国cms列表页调用内容页内容字段newstext2019-02-19
帝国cms栏目导航调用之SQL语句调用一级栏目和二级栏目2019-02-23
帝国CMS商城系统在线支付后,订单邮件提醒2019-02-15
帝国CMS整站源码通用安装教程2019-10-11