12-15-2009, 10:56 PM
[eluser]fsw[/eluser]
I have a form like this:
I'm using http://www.mitesdesign.com/blog/open-sou...de-igniter for each of the file upload, so each one of them have multiple upload capabilities and there are 7 of them.
The question is how to make it upload multidimensonaly... thx before
I have a form like this:
Code:
<tbody>
<tr>
<td scope="col" class="title"><div class="data">Event Notification</div></td>
<td rowspan="2" scope="col" class="title file">
<div class="data">
<?php if (isset($error)) echo $error;?>
<input type="file" name="userfile[]" size="20" class="multi" />
<br />
</div>
</td>
</tr>
<tr>
<td scope="col" class="title">
<div class="data">
Note
<br/>
<br/>
<fieldset>
<legend title="">
<textarea id="nature_of_loss" name="nature_of_loss" cols="25" rows="7" class="round-corner-4px"><?php echo set_value('nature_of_loss'); ?></textarea></textarea>
</legend>
</legend>
<?php echo form_error('nature_of_loss'); ?>
</div>
</td>
</tr>
<tr>
<td scope="col" class="title"><div class="data">Fact Finding Survey</div></td>
<td rowspan="2" scope="col" class="title file">
<div class="data">
<?php if (isset($error)) echo $error;?>
<input type="file" name="userfile[]" size="20" class="multi" />
<br />
</div>
</td>
</tr>
<tr>
<td scope="col" class="title">
<div class="data">
Note
<br/>
<br/>
<fieldset>
<legend title="">
<textarea id="nature_of_loss" name="nature_of_loss" cols="25" rows="7" class="round-corner-4px"><?php echo set_value('nature_of_loss'); ?></textarea></textarea>
</legend>
</legend>
<?php echo form_error('nature_of_loss'); ?>
</div>
</td>
</tr>
</tbody>
I'm using http://www.mitesdesign.com/blog/open-sou...de-igniter for each of the file upload, so each one of them have multiple upload capabilities and there are 7 of them.
The question is how to make it upload multidimensonaly... thx before