Tagged Questions
0
votes
0answers
24 views
phpactiverecord retrieve records
Let's make it short, I pass an user id into a function and try to get all attributes for this user:
$user = \Sitename\UsrManager::getUserById($user_id);
I then print_r($user) and get a bunch of ...
1
vote
1answer
440 views
PHP Activerecord array of objects, what next?
Assume the following association among three tables in a database:
//working with three tables a client 'has one' business
//and a business has many business hours.
The following would give ...
