Welcome Guest, Not a member yet? Register   Sign In
Looping file
#3

PHP Code:
<?= form_open(); ?>
    <table>
        <thead>
            <tr>
                <th>Edit Caption</th>
                <th>Images</th>
                <th>Delete</th>
            </tr>
        </thead>
        <tfoot>
            <tr>
                <td colspan='3'>
                    <input type="submit" name="delete" class='btn-delete' value="Delete Selected" />
                    <input type="submit" name="update" class='btn-update' value="Update Captions" />
                </td>
            </tr>
        </tfoot>
        <tbody>
            <?php foreach $images as $image) : ?>
            <tr>
                <td><input type="text" name="caption[]" value="<?= $image['caption']; ?>" /></td>
                <td><img src="<?= base_url($image['src']; ?>" height="<?= $image['height']; ?>" width="<?= $image['width']; ?>" /></td>
                <td><input type="checkbox" class='delete' name='checked[]' value="<?= $image['id']; ?>" /></td>
            </tr>
            <?php endforeach; ?>
        </tbody>
    </table>
<?= form_close(); ?>
Reply


Messages In This Thread
Looping file - by davy_yg - 07-20-2016, 03:25 AM
RE: Looping file - by InsiteFX - 07-20-2016, 03:38 AM
RE: Looping file - by mwhitney - 07-20-2016, 06:42 AM
RE: Looping file - by davy_yg - 07-20-2016, 08:35 AM
RE: Looping file - by mwhitney - 07-20-2016, 01:47 PM
RE: Looping file - by davy_yg - 07-20-2016, 09:37 PM
RE: Looping file - by mwhitney - 07-22-2016, 10:56 AM
RE: Looping file - by Wouter60 - 07-20-2016, 09:00 AM
RE: Looping file - by PaulD - 07-21-2016, 03:09 AM
RE: Looping file - by InsiteFX - 07-21-2016, 03:18 AM
RE: Looping file - by Ivo Miranda - 07-22-2016, 12:19 PM



Theme © iAndrew 2016 - Forum software by © MyBB