Re: simple question about CakePHP syntax

2010-03-01 Thread sebb86
WebbedIT, Cristian, majna Thanks a lot! :-) 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@

Re: simple question about CakePHP syntax

2010-02-13 Thread Cristian Cassina
And the big difference is that single quote can't work with variables. For example: $name = 'Cristian'; $string = 'Hi, my name is $name'; echo $string; will output -> Hi, my name is $name If you had: $name = 'Cristian'; $string = "Hi, my name is $name"; the echo $string; output would be ->

Re: simple question about CakePHP syntax

2010-02-13 Thread WebbedIT
This is not a CakePHP question, it is a {HP question. Your two strings are identical, the only difference is your are surrounding them in double quotes the first time and single the second, in neither case are the quotes part of the string. Nice little explanation here: http://v1.jeroenmulder.com

Re: simple question about CakePHP syntax

2010-02-12 Thread majna
http://hr.php.net/manual/en/language.types.string.php On Feb 12, 12:50 pm, sebb86 wrote: > Hello, > > i have a question about some signs. Is the use of this   "sample" > always equal to this   'sample'  ? > > Thanks! Check out the new CakePHP Questions site http://cakeqs.org and help others with

simple question about CakePHP syntax

2010-02-12 Thread sebb86
Hello, i have a question about some signs. Is the use of this "sample" always equal to this 'sample' ? Thanks! 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 Googl