码迷,mamicode.com
首页 > 其他好文 > 详细

dede淘宝客跳转

时间:2015-10-27 15:06:47      阅读:486      评论:0      收藏:0      [点我收藏+]

标签:

首先,给模型添加一个新字段用来保存淘宝客链接

 技术分享

然后模板内容页中用
<a href="{dede:field name=‘phpurl‘/}/url.php?id={dede:field name=‘id‘/}" target="_blank">淘宝客链接</a>
最后最重要的是 url.php了,下载后放置到plus文件夹内,需根据自己添加的 淘宝客链接字段名称更改文件中的查询

最后效果图如图

技术分享

URL.PHP 以下为内容
----------------------
<?php


require_once(dirname(__FILE__)."/../include/common.inc.php");


$arcID = $id = (isset($id) && is_numeric($id)) ? $id : 0;
$row = $dsql->GetOne("Select taobaourl From `#@__addonarticle` f,`#@__archives` arc where arc.`id` = f.`aid` and f.`aid` = ‘$id‘");

$taobaourl = $row[‘taobaourl‘];
if ($taobaourl ==""){
echo ‘暂无链接信息‘;
}
else {
header("Location: $taobaourl");
}

?>

dede淘宝客跳转

标签:

原文地址:http://www.cnblogs.com/crealue/p/4914137.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!