try this
function getResult()
{

      $result = $this->query("SELECT * FROM `downloads` WHERE `index`=123");
      print_r($result);

 }


On Fri, Jun 4, 2010 at 3:16 PM, Toby Ashley <lowpi...@gmail.com> wrote:

> You never return $result from the getResult function. You need:
>
> function getResult()
> {
>
>       $result = $this->query("SELECT * FROM `downloads`
> WHERE `index`=123");
>       return $result;
>
>  }
>
>
>
> On Fri, Jun 4, 2010 at 10:40 AM, ytbryan <ytbr...@gmail.com> wrote:
>
>> Hi all,
>>
>> 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+unsubscr...@googlegroups.com<cake-php%2bunsubscr...@googlegroups.com>For
>>  more options, visit this group at
>> http://groups.google.com/group/cake-php?hl=en
>>
>
>  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+unsubscr...@googlegroups.com<cake-php%2bunsubscr...@googlegroups.com>For
>  more options, visit this group at
> http://groups.google.com/group/cake-php?hl=en
>



-- 
Dilip Godhani
Jr Software Developer, Entourage Solutions
e-mail: di...@entouragesolutions.com
          dilip.godh...@gmail.com
Web.: www.entouragesolutions.com
m. 9913822582

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+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en

Reply via email to