我是 cakePHP 的新手。有人可以帮助我使用 HTML 5 使用 cake php 上传多个文件的代码。任何帮助将不胜感激。
这是我到目前为止所拥有的:
<tr>
<th>ID</th>
<th>File Name</th>
<th>Size</th>
</tr>
<?php foreach($files as $file): ?>
<tr>
<td>
<?php echo $file['Doc']['id'];?>
</td>
<td>
<?php echo $this->Html->link($file['Doc']['name'], array('controller' => 'files', 'action' => 'uploads', $file['Doc']['name'])); ?>
</td>
<td>
<?php echo number_format($file['Doc']['size']/1023,0).' KB';?>
</td>
</tr>
<?php endforeach;?>
<h1>Add a File</h1>
<?php
echo $this->Form->create('Doc',array('type'=>'file'));
echo $this->Form->file('File');
echo $this->Form->submit('Upload');
echo $this->Form->end();
?>