コード例 #1
0
ファイル: HTMLForm.php プロジェクト: alegalliard/aug
 function __construct($action = null)
 {
     parent::__construct('form');
     $this->method = 'post';
     $this->enctype = 'multipart/form-data';
     if (!is_null($action)) {
         $this->action = $action;
     }
 }