罪と罰++二律背反
PHP/PEAR/HTML_QuickForm
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
単語検索
|
最終更新
|
ヘルプ
] [
リンク元
]
開始行:
[[PHP/PEAR]]
*インストール [#r73ef07e]
+HTML/QuickForm
+HTML/Common
*HTML_QuickForm使用 [#nd68f9e1]
とりあえず、使用できた
class ulogonForm extends HTML_QuickForm {
function ulogonForm($formname = '', $submit = true) {
parent::HTML_QuickForm($formName);
//$this->addElement('text','menu','','logon');
$this->addElement('text','id','ログオンID',array('size'...
$this->addElement('text','pw','パスワード',array('size'...
$this->addElement('hidden','mn','logon');
if($submit){
$this->addElement('submit','submit','送信');
}
$this->applyFilter('__ALL__','trim');
$this->addRule('id','ログオンIDを入力して下さい','requi...
$this->addRule('pw','パスワードを入力して下さい','requi...
}
}
$form = new uLogonForm('form');
if ($form->validate()) {
// 入力チェックOKの時のログオン処理
}
$result = $form->toHTML();
終了行:
[[PHP/PEAR]]
*インストール [#r73ef07e]
+HTML/QuickForm
+HTML/Common
*HTML_QuickForm使用 [#nd68f9e1]
とりあえず、使用できた
class ulogonForm extends HTML_QuickForm {
function ulogonForm($formname = '', $submit = true) {
parent::HTML_QuickForm($formName);
//$this->addElement('text','menu','','logon');
$this->addElement('text','id','ログオンID',array('size'...
$this->addElement('text','pw','パスワード',array('size'...
$this->addElement('hidden','mn','logon');
if($submit){
$this->addElement('submit','submit','送信');
}
$this->applyFilter('__ALL__','trim');
$this->addRule('id','ログオンIDを入力して下さい','requi...
$this->addRule('pw','パスワードを入力して下さい','requi...
}
}
$form = new uLogonForm('form');
if ($form->validate()) {
// 入力チェックOKの時のログオン処理
}
$result = $form->toHTML();
ページ名: