本帖最后由 smenjyxl 于 2011-1-18 21:50 编辑
我自己搞了一下 但是不成功 麻烦大家帮忙看一下
首先,进入品牌空间管理中心-》全局-》数据调用-》19楼商家图文格式-》编辑(调用的sql语句:select itemid,subjectimage,subject from brand_shopitems ,模板风格文件是test_17.html.php
,内容是 <!--{loop $iarr $ikey $value}-->
<li>
<div class="dt"><a href="{B_URL}/store.php?id={$value['itemid']}" target="_blank"><img height="80" width="100" src="{$value['thumb']}" ></a> </div>
<div class="dd">
<div><a href="{B_URL}/store.php?id={$value['itemid']}" target="_blank" style="font-weight: bold; width:95px; overflow: hidden;display:block;height:20px">{$value['subject']}</a><div4>
<div style="height:40px; overflow:hidden"></div>
<a href="{B_URL}/store.php?id={$value['itemid']}" target="_blank" class="btn" style="color:#F00; text-decoration:underline">逛逛去</a> </div>
</li>
<!--{/loop}-->)
因为我不仅想调用itemid,subjectimage,subject from brand_shopitems
我还想调用 brand_noticeitems 表中的subject(公告)字段(这两个表中的subject代表的意思不一样,一个是商店的名称一个是公告)所以我把调用sql语句改成了select a.itemid,a.subjectimage,a.subject,a.uid,
b.uid,b.subject from `brand_shopitems` a, `brand_noticeitems` b WHERE a.uid=b.uid order by uid desc 但是还是不行 ,如何能把逛逛去换成brand_noticeitems表中的subject字段? |