Welcome Guest, Not a member yet? Register   Sign In
Cannot delete from database
#4

Hi,

The Model works and deletes the post if I use it in a from to delete it.  When I add it to a table is when it does not work.  This is how I have the table setup.

<tbody>
<?php foreach($posts as $post) : ?>
    <tr>
        <td><?php echo $post['title']; ?></td>
        <td><?php echo $post['body']; ?></td>
        <td><?php echo $post['created_at']; ?></td>
    <td>
        <a class="btn btn-warning" href="<?php echo base_url(); ?>posts/edit/<?php echo $post['slug']; ?>"><i class="fa fa-pencil"></i>Edit</a>
    </td>
NOTE: THE FOLLOWING DOES NOT WORK
    <td>
        <a class="btn btn-danger" type="button"  href="<?php echo base_url(); ?>posts/delete/<?php echo $post['id']; ?>"><i class="fa fa-close"></i>delete</a>
    </td>

    </tr>
<?php endforeach; ?>
</tbody>

Thanks for the help.
Reply


Messages In This Thread
Cannot delete from database - by michaeldtrek - 07-20-2017, 01:31 PM
RE: Cannot delete from database - by cybersven - 07-21-2017, 02:42 AM
RE: Cannot delete from database - by donpwinston - 07-21-2017, 07:19 AM
RE: Cannot delete from database - by michaeldtrek - 07-21-2017, 10:23 AM
RE: Cannot delete from database - by Wouter60 - 07-22-2017, 02:20 AM
RE: Cannot delete from database - by michaeldtrek - 07-22-2017, 08:27 AM
RE: Cannot delete from database - by InsiteFX - 07-22-2017, 02:27 AM
RE: Cannot delete from database - by michaeldtrek - 07-22-2017, 08:29 AM
RE: Cannot delete from database - by Wouter60 - 07-22-2017, 09:57 AM
RE: Cannot delete from database - by michaeldtrek - 07-22-2017, 10:24 AM
RE: Cannot delete from database - by michaeldtrek - 07-22-2017, 11:11 AM
RE: Cannot delete from database - by Paradinight - 07-22-2017, 11:20 AM
RE: Cannot delete from database - by Wouter60 - 07-23-2017, 04:27 AM
RE: Cannot delete from database - by michaeldtrek - 07-23-2017, 09:01 AM
RE: Cannot delete from database - by Wouter60 - 07-24-2017, 12:29 AM



Theme © iAndrew 2016 - Forum software by © MyBB