$tel = array(); $tel[] =& $form->createElement( "text", "tel1"); $tel[] =& $form->createElement( "text", "tel2"); $tel[] =& $form->createElement( "text", "tel3"); $sex = array(); $options = array( "minYear"=>1970, "maxYear"=>2000, "format"=>"YMd")); † if ( $form->validate()) { $form->process( "myProcess", FALSE); } else { $form->display(); } function myProcess( $values) { } *2