cakephp2-php8/libs/controllers/templates/scaffolds/new.thtml

11 lines
207 B
Text
Raw Normal View History

<?php
uses('helpers/form');
$form = new FormHelper();
echo $html->formTag('/'.$this->name.'/create');
echo $form->generateFields( $html, $fieldNames );
echo $form->generateSubmitDiv( $html, 'Add' )
?>