Hello,
Can anyone help me printing all the files that I have in uploads/ ? to the screen. Each pictures must be printed in each row.
views/slideshows.php
How?
Can anyone help me printing all the files that I have in uploads/ ? to the screen. Each pictures must be printed in each row.
views/slideshows.php
PHP Code:
<table style="padding: 10px;">
<tr>
<td><b>EDIT CAPTION</b></td>
<td><center><b>IMAGES</b></td>
<td><b>DELETE</b></center></td>
</tr>
<tr>
<td><input type="text" name="caption" value=""></td>
<td><img src="<?php echo base_url('uploads/pic1.jpg'); ?>" height="300" width="400"></td>
<td><button class="delete">DELETE</button></td>
</tr>
<tr>
<td><input type="text" name="caption" value=""></td>
<td><img src="<?php echo base_url('uploads/pic2.jpg'); ?>" height="300" width="400"></td>
<td><button class="delete">DELETE</button></td>
</tr>
</table>
How?