사용하면 괞찮을듯한 쇼핑몰 장바구니 class ^^ Posted by Albert 4804Day 14Hour 14Min 57Sec 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 4804Day 19Hour 56Min 56Sec ago [2012-02-24] 쇼핑몰에 피지사 부칠때에 사용되는것입니다. 웹상 파비콘 만들기 ^^ Posted by Albert 4805Day 19Hour 18Min 22Sec ago [2012-02-23] http://www.favicon.cc/ 간단한 계시판(테스트) Posted by Albert 4806Day 8Hour 46Min 1Sec ago [2012-02-22] 참고용입니다. 시간함수 strtotime Posted by Albert 4806Day 20Hour 21Min 17Sec 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";