사용하면 괞찮을듯한 쇼핑몰 장바구니 class ^^ Posted by Albert 4875Day 20Hour 54Min 39Sec ago [2012-02-24] //------------- 클래스 선언 파일 (cart_class.php);class item{ var $name; var $price; var $qty;} class cart{ var $item; function insert( $code, $name, $price, $qty) { $this->item[$code] new Item; $this->item[$code]->name $name; $this->item[$code]->price $price; … 올더게이트 설명서 및 소스파일 Posted by Albert 4876Day 2Hour 36Min 38Sec ago [2012-02-24] 쇼핑몰에 피지사 부칠때에 사용되는것입니다. 웹상 파비콘 만들기 ^^ Posted by Albert 4877Day 1Hour 58Min 4Sec ago [2012-02-23] http://www.favicon.cc/ 간단한 계시판(테스트) Posted by Albert 4877Day 15Hour 25Min 43Sec ago [2012-02-22] 참고용입니다. 시간함수 strtotime Posted by Albert 4878Day 3Hour 59Sec ago [2012-02-22] echo strtotime("now"), "\n"; echo strtotime("10 September 2000"), "\n"; echo strtotime("+1 day"), "\n"; echo strtotime("+1 week"), "\n"; echo strtotime("+1 week 2 days 4 hours 2 seconds"), "\n"; echo strtotime("next Thursday"), "\n"; echo strtotime("last Monday"), "\n";