Hi all,
In my sample database table, I have a record with post id 999. I got a few lines of code to retrieve the record of post id 999:
function viewing($sid){
$this->Testing->post_id=$sid;
$this->set('posts', $this->Testing->read());
}
But no record can be record retrieved from the post with id 999 when I altered the code:
function viewing($sid){
$sid=999;
$this->Testing->post_id=$sid;
$this->set('posts', $this->Testing->read());
}
Could you tell help me please?