PHP functions in controller

2012-08-29 Thread Nareh Tarasyan
how can I use usual PHP functions in controller?

for example i use 
$rand=rand(1,$number)

in View/index.ctp

but don know how to use in controller?

-- 
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.
Visit this group at http://groups.google.com/group/cake-php?hl=en-US.




Re: PHP functions in controller

2012-08-29 Thread Marcus James
Hi,

You can use any PHP function in your controller just like you use it in
your normal PHP code.

It same in controller too :-

function index()
{
$rand=rand(1,$number);
}


Enjoy ,
Marcus

-- 
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.
Visit this group at http://groups.google.com/group/cake-php?hl=en-US.




Re: PHP functions in controller

2012-08-29 Thread AD7six
all hope is lost

On Wednesday, 29 August 2012 15:27:06 UTC+2, Nareh Tarasyan wrote:

 how can I use usual PHP functions in controller?

 for example i use 
 $rand=rand(1,$number)

 in View/index.ctp

 but don know how to use in controller?


-- 
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.
Visit this group at http://groups.google.com/group/cake-php?hl=en-US.




Re: PHP functions in controller

2012-08-29 Thread Nareh Tarasyan
Thanks Marcus

but u know what I did here... see:

$this-set('rand', rand(1,$this-Word-find('count'))); 
$this-set('randword', $this-Word-findById());

I want ID= value of rand function, but don know how to write it.

-- 
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.
Visit this group at http://groups.google.com/group/cake-php?hl=en-US.




Re: PHP functions in controller

2012-08-29 Thread Jeremy Burns | Class Outfit
Read. The. Manual.

Jeremy Burns
Class Outfit

http://www.classoutfit.com

On 29 Aug 2012, at 15:24:26, Nareh Tarasyan narehtaras...@gmail.com wrote:

 Thanks Marcus
 
 but u know what I did here... see:
 
 $this-set('rand', rand(1,$this-Word-find('count')));   
 
   $this-set('randword', $this-Word-findById());
 
 I want ID= value of rand function, but don know how to write it.
 
 -- 
 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.
 Visit this group at http://groups.google.com/group/cake-php?hl=en-US.
  
  

-- 
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.
Visit this group at http://groups.google.com/group/cake-php?hl=en-US.




Re: PHP functions in controller

2012-08-29 Thread Mark Wratten
$this-set('randword', 
$this-Word-findById(rand(1,$this-Word-find('count';

On Wednesday, August 29, 2012 10:24:26 AM UTC-4, Nareh Tarasyan wrote:

 Thanks Marcus

 but u know what I did here... see:

 $this-set('rand', rand(1,$this-Word-find('count'))); 
 $this-set('randword', $this-Word-findById());

 I want ID= value of rand function, but don know how to write it.


-- 
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.
Visit this group at http://groups.google.com/group/cake-php?hl=en-US.




Re: PHP functions in controller

2012-08-29 Thread Nareh Tarasyan
Yeah, Mark, I also thought so and tried, but it doesn't work. Doesn't echo 
anything :/

-- 
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.
Visit this group at http://groups.google.com/group/cake-php?hl=en-US.