Can someone help me with this.
I do a query on my database from model.
function getResult()
{
$result = $this->query("SELECT * FROM `downloads` WHERE
`index`=123");
}
I call assign the query result to the view from controller.
function index(){
$this->set('result', $this->MosDownload->getResult());
}
I call the variable on the view.
<h2><?php echo $result; ?></h2>
But the result is not displayed. What is wrong ?
Check out the new CakePHP Questions site http://cakeqs.org and help others with their CakePHP related questions.
You received this message because you are subscribed to the Google Groups "CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/cake-php?hl=en
No comments:
Post a Comment