[[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'=>8));
$this->addElement('text','pw','パスワード',array('size'=>8));
$this->addElement('hidden','mn','logon');
if($submit){
$this->addElement('submit','submit','送信');
}
$this->applyFilter('__ALL__','trim');
$this->addRule('id','ログオンIDを入力して下さい','required',null);
$this->addRule('pw','パスワードを入力して下さい','required',null);
}
}
$form = new uLogonForm('form');
if ($form->validate()) {
// 入力チェックOKの時のログオン処理
}
$result = $form->toHTML();