Welcome Guest, Not a member yet? Register   Sign In
small blog help needed passing data
#7

[eluser]jvicab[/eluser]
usually the extra time is not an issue and that way makes your code clear, and modular, thereforre easier to troubleshoot and debug

I think in your approachm, you don't need the data parameter in the entrytest function, and you do when you call $this->Entrymodel->sendentry($title, $comment);, so it would look like:

function entrytest() {
$this->load->model('Entrymodel');
$title = $this->input->post('title');
$comment = $this->input->post('comment');
$data = $this->Entrymodel->sendentry($title, $comment);

if($data > 0){

echo $data;
$this->load->view('blogentryview', $data);
}
else {
echo "there was no blogs added";

}

}

that way $data will hold what is returned by sendentry function and you will not have the Missing argument 1 for Entry::entrytest() and Undefined variable: data errors.


Messages In This Thread
small blog help needed passing data - by El Forum - 08-11-2011, 05:06 PM
small blog help needed passing data - by El Forum - 08-11-2011, 06:30 PM
small blog help needed passing data - by El Forum - 08-12-2011, 05:58 AM
small blog help needed passing data - by El Forum - 08-12-2011, 08:06 AM
small blog help needed passing data - by El Forum - 08-12-2011, 01:30 PM
small blog help needed passing data - by El Forum - 08-12-2011, 03:26 PM
small blog help needed passing data - by El Forum - 08-12-2011, 03:31 PM
small blog help needed passing data - by El Forum - 08-12-2011, 04:02 PM
small blog help needed passing data - by El Forum - 08-12-2011, 04:39 PM
small blog help needed passing data - by El Forum - 08-12-2011, 05:04 PM
small blog help needed passing data - by El Forum - 08-12-2011, 05:15 PM
small blog help needed passing data - by El Forum - 08-12-2011, 05:31 PM
small blog help needed passing data - by El Forum - 08-12-2011, 05:42 PM
small blog help needed passing data - by El Forum - 08-12-2011, 05:46 PM
small blog help needed passing data - by El Forum - 08-12-2011, 05:48 PM
small blog help needed passing data - by El Forum - 08-12-2011, 06:47 PM



Theme © iAndrew 2016 - Forum software by © MyBB