tpl assign 사용예

Programming/PHP | 2013. 1. 17. 14:10
Posted by 오요미

 

<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>

<html>
  <body>
    This JSP stores the 'para' in a session-scoped variable where
    the other JSPs in the web application can access it.
    <p />
    <c:set var="para" value="${41+1}" scope="session"  />

     Click <a href="displayAttributes.jsp">here</a> to view it.
  </body>
</html>

//displayAttributes.jsp

<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>

<html>
  <head>
    <title>Retrieval of attributes</title>
  </head>
  <body>
    The para is <c:out value="${sessionScope.para}" /> <br/>
  </body>
</html>

 

JSTL에서 참조함 template파일에서

{assign var=para value="sMallId=`$smarty.get.sMallId`&sAdId=`$smarty.get.sAdId`"}

으로 para를 선언해서 {$para}로 사용 (popup_mall_tab.php참조)

'Programming > PHP' 카테고리의 다른 글

PHP 시작  (0) 2013.01.17
preg_함수들...  (0) 2012.12.18
 
블로그 이미지

오요미

공부할 수 있는 순간을 감사하며 공부하라.

카테고리

분류 전체보기 (121)
Electronics (1)
Programming (72)
Culturallife (30)
English (11)
취업 (1)
대학원 (4)
Life (1)