PHPCMS_흔 한 질문 (1)
16365 단어 phpcms
{get_memberavatar($r['userid'],1,45)} userid 로 호출 할 수 있다 면 이 코드 는 어디서 든 사용 할 수 있 습 니 다. 첫 페이지, 항목 페이지, 문장 페이지. 여기 서 나 는 get 으로 member 표 안의 userid 필드 를 호출 할 것 이다. {pc: get sql = "select * from v9 member order by regdate desc" num = "6"} / * 여기 서 userid * / {loop $data $r} 을 얻 을 수 있 습 니 다. {/loop}{/pc}
————————————————————————————————————————————————————————————————
(2) pc ms 페이지 스타일 및 프론트 데스크 톱 호출:
페이지 스타일:
/* , css */
#pages { padding:14px 0 10px; font-family: }
#pages a { display:inline-block; height:22px; line-height:22px; background:#fff; border:1px solid #e3e3e3; text-align:center; color:#333; padding:0 10px}
#pages a.a1 { background:url(../images/admin_img/pages.png) no-repeat 0 5px; width:56px; padding:0 }
#pages a:hover { background:#f1f1f1; color:#000; text-decoration:none }
#pages span { display:inline-block; height:22px; line-height:22px; background:#5a85b2; border:1px solid #5a85b2; color:#fff; text-align:center;padding:0 10px}
.page .noPage { display:inline-block; width:56px; height:22px; line-height:22px; background:url(../img/icu/titleBg.png) repeat-x 0 -55px ; border:1px solid #e3e3e3; text-align:center; color:#a4a4a4; }
프론트 데스크 톱 호출 페이지:
/* */
<div id="pages" style="margin-top:20px; text-align: center;">
{$pages}
</div>
——————————————————————————————————————————————————————————————————
(3) 프론트 데스크 톱 에서 전체 사이트 검색 코드 를 호출 합 니 다.
<form action="index.php?m=search&c=index&a=init" method="get" target="_blank">
<input type="hidden" name="m" value="search"/>
<input type="hidden" name="c" value="index"/>
<input type="hidden" name="a" value="init"/>
<input type="hidden" name="typeid" value="1" id="typeid"/>
<input type="hidden" name="siteid" value="1" id="siteid"/>
<input name="q" id="q" type="text" value=" ……"/>
<input name="submit"type="image" value="" />
</form>
——————————————————————————————————————————————————————————————————
(4) 프론트 데스크 톱 댓 글 상자 호출 코드:
<iframe src="{APP_PATH}index.php?m=comment&c=index&a=init&commentid={id_encode("content_$catid",$id,$siteid)}&iframe=1" width="100%" height="100%" id="comment_iframe" frameborder="0" scrolling="no">
</iframe>
——————————————————————————————————————————————————————————————————
(5) 글 내용 페이지 에 클릭 수 표시:
jQuery, < script type = "text / javascript" src = "{JS PATH} jquery. min. js" > < / script > 를 사용 해 야 합 니 다. 페이지 아래쪽 에 놓 아야 합 니 다: < script language = "JavaScript" src = "{APP PATH} api. php? op = count & id = {$id} & modelid = {$modelid}" > < / script > 구체 적 인 수량 치 는 span 안에 있 습 니 다: < span id = "hits" > < / span >
———————————————————————————————————————————————————————————————————
(6) 상세 페이지 에서 다음 편 을 호출 합 니 다.
방법 1:
<div class="info">
<span> :<a href="{$previous_page[url]}">{$previous_page[title]}</a></span>
<span> :<a href="{$next_page[url]}">{$next_page[title]}</a></span>
</div>
방법 2:
/* :*/
{pc:get sql="SELECT * FROM v9_news WHERE id < $id ORDER BY id DESC" num="1" return="p"}
{loop $p $pv}
{php $pid = "id = $pv[id]"}
{pc:content action="lists" catid="$catid" where="$pid" order="id DESC" num="1"}
<ul>
{loop $data $key $val}
<li> <a href="{$val['url']}">{$val['title']}</a></li>
{/loop}
</ul>
{/pc}
{/loop}
{/pc}
/* :*/
{pc:get sql="SELECT * FROM v9_news WHERE id > $id ORDER BY id ASC" num="1" return="ne"}
{loop $ne $nev}
{php $neid = "id = $nev[id]"}
{pc:content action="lists" catid="$catid" where="$neid" order="id DESC" num="1"}
<ul>
{loop $data $key $val}
<li> <a href="{$val['url']}">{$val['title']}</a></li>
{/loop}
</ul>
{/pc}
{/loop}
{/pc}
(7) 관련 글 호출
{pc:content action=”relation” relation=”$relation” catid=”$catid” num=”5″ keywords=”$rs[keywords]“}
{loop $data $r}
<li><a href=”{$r[url]}” target=”_blank”>{$r[title]}</a><span>({date(‘Y-m-d’,$r[inputtime])})</span></li>
{/loop}
{/pc}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
PHPCMS_흔 한 질문 (1){get_memberavatar($r['userid'],1,45)} userid 로 호출 할 수 있다 면 이 코드 는 어디서 든 사용 할 수 있 습 니 다. 여기 서 나 는 get 으로 member 표 안의 use...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.