2009-03-08から1日間の記事一覧

select の orderby

selectに当たり前のようにつけるorder by わすれている。 ついでにcountとoffsetでの取得を追加。 ・ ・ ・ // select Count public static function selectCount( $pdo, $tblname, $fields, $where ) { $sql = CDbMethods::selectStr( $tblname, $fields, $…

htmltemplate

$html['WindowLeftContents'] = HtmlTemplate::t_buffer(TemplateFileWindow1,$html); $html['WindowCenterContents'] = HtmlTemplate::t_buffer(TemplateFileWindow2,$html); $html['WindowRightContents'] = HtmlTemplate::t_buffer(TemplateFileWindow3,$…

php study?????

class CActionExecutor { // execute public static function execute( $action, $funcarray ) { try { $func = CIniFile::getIni( SCRIPTDIR.CIniFile::INI_ACTION, $action, "function" ); $module = CIniFile::getIni( SCRIPTDIR.CIniFile::INI_ACTION, $…

index.php

大本のプログラム index.phpというかコントローラもどきというか。try { $params = CRequestParser::parse(); if ( !isset( $params[ 'action' ] ) ) { if ( $_SERVER['REQUEST_URI'] == "/" || $_SERVER['REQUEST_URI'] == "/index.html" || $_SERVER['REQU…