묻고답하기
소스 수정좀 도와주세요;;;
2010.11.26 21:17
<td width="82" align="center" style="display:{{$blog_display}}">{{if ($bbs_list_info.member_id == "abc") }}<IMG SRC="/web/upload/abc.gif" BORDER=0 ALIGN=ABSMIDDLE>{{else}}
<font color='{{$board_list_info.4}}' >{{$c_3_u1icon}} {{$bbs_list_info.writer_name}}</font>{{/if}}</td>
위와 같은 내용인데
조건을 하나 더 주고 싶어요
{{if ($bbs_list_info.member_id == "def") }}<IMG SRC="/web/upload/def.gif" BORDER=0 ALIGN=ABSMIDDLE>{{else}}
이걸 넣고싶어요
지금 현재대로 출력되면 id가 abc인경우 abc.gif가 출력되고 아닌경우에는
<font 내용부터 /font> 까지가 출력되는데
저는 abc인경우 abc.gif 출력하고 def인 경우 def.gif 출력하고 둘다아니면 <font 부터 /font>까지의 내용을
출력하고 싶답니다 -_-;;;
<td width="82" align="center" style="display:{{$blog_display}}">{{if ($bbs_list_info.member_id == "abc") }}<IMG SRC="/web/upload/abc.gif" BORDER=0 ALIGN=ABSMIDDLE>{{else}}{{/if}}{{if ($bbs_list_info.member_id == "def") }}<IMG SRC="/web/upload/def.gif" BORDER=0 ALIGN=ABSMIDDLE>{{else}}<font color='{{$board_list_info.4}}' >{{$c_3_u1icon}} {{$bbs_list_info.writer_name}}</font>
{{/if}}</td>
이 구문대로 집어넣으니까
잘 안되네요;; 제가 프로그래밍을 몰라서 ㅠ_ㅠ++
답변좀 부탁드립니다.. (_ _)
<td width="82" align="center" style="display:{{$blog_display}}">{{if ($bbs_list_info.member_id == "abc") }}<IMG SRC="/web/upload/abc.gif" BORDER=0 ALIGN=ABSMIDDLE>{{else}}{{if ($bbs_list_info.member_id == "def") }}<IMG SRC="/web/upload/def.gif" BORDER=0 ALIGN=ABSMIDDLE>{{else}}<font color='{{$board_list_info.4}}' >{{$c_3_u1icon}} {{$bbs_list_info.writer_name}}</font>
{{/if}}{{/if}}</td>
안되면 ....ㅡㅡ;;;;
저도 초보..ㅋ