2008-11-15から1日間の記事一覧

php5フレームワークsymfonyを勉強しました。その3

前回の続き。7章を勉強しました。ビューレイヤーの内側 サンプルのindexSuccess.phpテンプレート <h1>ようこそ</h1> <p>お帰りなさい、!</p> <ul>何をなさりたいですか? <li></li> <li></li> </ul> input_tagヘルパー =>…

php5フレームワークsymfonyを勉強しました。その2

前回の続き。今日は6章を勉強しました。 コントロールレイヤーの内側 アクションの情報を取り出す class mymoduleActions extends sfActions { public function executeIndex() { // リクエストパラメータを取り出す $password = $this->getRequestParameter…

php5フレームワークsymfonyを勉強しました。その4

前回の続き。8章を勉強しました。モデルレイヤーの内側 symfonyのデータベーススキーマ サンプルのschema.yml propel: blog_article: _attributes: { phpName: Article } id: title: varchar(255) content: longvarchar created_at: blog_comment: _attribut…