I see. Thank you!

On Jun 5, 8:26 pm, Dilip Godhani <[email protected]> wrote:
> its return array and u print array in echo ,,,,,,echo cnt display arrayy
> so it is not work.....
>
> On Fri, Jun 4, 2010 at 3:21 PM, Dilip Godhani <[email protected]>wrote:
>
>
>
> > 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 <[email protected]> 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 <[email protected]> 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 sitehttp://cakeqs.organd 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 [email protected]
> >>> To unsubscribe from this group, send email to
> >>> [email protected]<cake-php%[email protected]>For
> >>>  more options, visit this group at
> >>>http://groups.google.com/group/cake-php?hl=en
>
> >>  Check out the new CakePHP Questions sitehttp://cakeqs.organd 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 [email protected]
> >> To unsubscribe from this group, send email to
> >> [email protected]<cake-php%[email protected]>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: [email protected]
> >           [email protected]
> > Web.:www.entouragesolutions.com
> > m. 9913822582
>
> --
> Dilip Godhani
> Jr Software Developer, Entourage Solutions
> e-mail: [email protected]
>           [email protected]
> 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 [email protected]
To unsubscribe from this group, send email to
[email protected] For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en

Reply via email to