Search Results

2
votes
2answers
146 views

Any tips for switching from CakePHP to Ruby on Rails?

I've been wanting to make the switch from PHP. Anyone care to highlight the similar classes or the key differences between CakePHP and Ruby on Rails? Thank you! …
0
votes

Installing cake php on xampp

Have you checked if your database user name and password is correct? Also ensure that your database does exist. The following is the default username and password (actually, no pas …
0
votes

Best PHP Framework Training Resource?

I recommend CakePHP. …
1
vote

Variable naming conventions in CakePHP

There isn't a right or wrong answer to this. I usually name it: $active_sites = $this->Site->find('all',array('conditions'=>array('Site.active' => '1'), 'recursive' => …
1
vote

Does CakePHP handle FKs on the code level or should I be adding FKs to my db too?

In CakePHP, it doesn't matter if you specify FKs in the database level, however if you do, it would act as you would expect in typical database operations. If you have 2 tables - students a …