blob: cd6e50874058ef03c9a553c70d852b330cafb77b (
plain)
1
2
3
4
5
|
<h1>Upload a photo</h1>
<?= $this->form->create($photo, array('type' => 'file')); ?>
<?= $this->form->field('file', array('type' => 'file')); ?>
<?= $this->form->submit("Upload"); ?>
<?= $this->form->end(); ?>
|