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

(07-23-2017, 04:27 AM)Wouter60 Wrote:
Quote:I need to figure out how to reset the auto increment in the database if I can.  At least I think this is the best way to proceed.

No it's not.
Let your controller fetch the records (optionally via a model), and pass them as an array to the view that shows the table.
Use a foreach... structure to display the records.

Very basic example:
Code:
<table>
<?php foreach ($posts as $post) : ?>
 <tr><td><?= $post->title;?></td><td><?= anchor('posts/delete/' . $post->id,'Delete');?></td></tr>
<?php endforeach; ?>
</table>

This way, each delete button refers to an existing record.

Thanks,  Even though I fixed the issue I'm in the learning mode and I'm going to take your advice and fetch the records in the Model.  For me it's a challenge as I believe it will help me learn how to structure the code better.

Again thanks for your input I really appreciate it.
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