Changeset 12850
- Timestamp:
- 2007/05/15 21:21:11 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/dev/html/mobile/nonmember/deliv.php
r12845 r12850 1 1 <?php 2 3 require_once("../require.php"); 4 5 class LC_Page { 6 var $arrSession; 7 var $tpl_mode; 8 var $tpl_login_email; 9 function LC_Page() { 10 $this->tpl_mainpage = 'nonmember/index.tpl'; 11 global $arrPref; 12 $this->arrPref = $arrPref; 13 global $arrSex; 14 $this->arrSex = $arrSex; 15 global $arrJob; 16 $this->arrJob = $arrJob; 17 $this->tpl_onload = 'fnCheckInputDeliv();'; 18 19 /* 20 session_start»þ¤Îno-cache¥Ø¥Ã¥À¡¼¤òÍÞÀ©¤¹¤ë¤³¤È¤Ç 21 ¡ÖÌá¤ë¡×¥Ü¥¿¥ó»ÈÍÑ»þ¤Î͸ú´ü¸ÂÀÚ¤ìɽ¼¨¤òÍÞÀ©¤¹¤ë¡£ 22 private-no-expire:¥¯¥é¥¤¥¢¥ó¥È¤Î¥¥ã¥Ã¥·¥å¤òµö²Ä¤¹¤ë¡£ 23 */ 24 session_cache_limiter('private-no-expire'); 25 } 26 } 27 28 $conn = new SC_DBConn(); 29 $objPage = new LC_Page(); 30 $objView = new SC_MobileView(); 31 $objSiteSess = new SC_SiteSession(); 32 $objCartSess = new SC_CartSession(); 33 $objCustomer = new SC_Customer(); 34 $objCookie = new SC_Cookie(); 35 $objFormParam = new SC_FormParam(); // ¥Õ¥©¡¼¥àÍÑ 36 lfInitParam(); // ¥Ñ¥é¥á¡¼¥¿¾ðÊó¤Î½é´ü²½ 37 $objFormParam->setParam($_POST); // POSTÃͤμèÆÀ 38 39 2 40 if ($_POST["mode2"] == "deliv") { 3 41
Note: See TracChangeset
for help on using the changeset viewer.