I have the following database tables:
- emails
- crawler_website
- crawler_blacklist
Since these are so close connected I want to create one model that uses all of these.
Is this possible in CakePHP? And if so how?
I have the following database tables:
Since these are so close connected I want to create one model that uses all of these.
Is this possible in CakePHP? And if so how?
You can add relations between models in cakephp by association.
Good luck!