I'm adding to add a functionality to my application where a user can delete messages received from friends one by one. I've added a deleteMessage function to my messages model. I then call this within a delete function in my home controller. On my home view I'm then supposed to be able to delete the message by pressing 'delete'. At the moment nothing happens. This will then delete this specific left for them in the messages database too. The db table holds the fields from, to and message. Thanks one again for your help
My home controller:
class Home extends CI_Controller
{
function Home()
{
parent::__construct();
$this->load->model('messages');
$this->load->model('friends');
$this->load->model("profiles");
}
function delete($message)
{
$username = $this->session->userdata('username');
$this->messages->deleteMessage($from, $to, $message);
redirect('home');
}
function index()
{
$username = $this->session->userdata('username');
$membername = $this->session->userdata('membername');
$viewData['membername'] = $membername;
$viewData['username'] = $username;
$viewData['following'] = $this->friends->getFollowing($username);
$viewData['followers'] = $this->friends->getFollowers($username);
$viewData['messages'] = $this->messages->getMessages($membername);
$viewData['friends'] = $this->friends->getFriends($username);
$this->load->view('shared/header');
$this->load->view('home/hometitle', $viewData);
$this->load->view('shared/nav');
$this->load->view('home/homeview', $viewData);
$this->load->view('shared/footer');
}
}
Messages model:
class Messages extends CI_Model
{
function Messages()
{
parent::__construct();
}
function deleteMessage($from, $to, $message)
{
$this->db->select('*')->from('messages')->where('from', $from)->where('to', $to)->where('message', $message);
$this->db->delete();
}
}
Home view:
<h2> Messages</h2>
<ul>
<?php foreach($messages as $message):?>
<li><?=$message['from']?> says...: "<?=$message['message']?>"(<?=anchor("home/delete/$message", 'delete')?>)</li>
<?php endforeach?>
</ul>
</div>
$fromand$tovariables in yourdeletefunction come from, isn't those values undefined? – Krister Andersson Nov 29 '12 at 19:34$messagearray into the delete URL. Do you have an ID you could use instead? – Tom Smilack Nov 29 '12 at 19:35<?=anchor("home/delete/{$message['id']}", 'delete')?>. However, from an MVC perspective it would make more sense to have the delete method of the message controller accessible throughmessage/delete/idrather than putting a delete method in the home controller (since you aren't deleting a home record). – Tom Smilack Nov 29 '12 at 19:58idfor the actual message and not the message body. – Krister Andersson Nov 29 '12 at 19:58