We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
public function get($userid, $key) { $db = Database::connect(); $builder = $db->table('users'); $builder->select('users.*'); $builder->join('users_profiles', 'users_profiles.userid = users.id', 'left'); $builder->where('users.id', $userid); $query = $builder->get()->getRowArray(); if($query) return $query; return null; }
Tried all possible options, different aliases and without them - produces the same error:
Call to a member function getRowArray() on boolean
its work only with 1 table
The text was updated successfully, but these errors were encountered:
sorry. all is work. dont work only with aliases
can i use aliase like as join ('users_profiles up', 'up.userid = u.id', 'left') ?
Sorry, something went wrong.
We use github for bug tracking, not support. You should post a thread on our forum instead.
No branches or pull requests
Tried all possible options, different aliases and without them - produces the same error:
Call to a member function getRowArray() on boolean
its work only with 1 table
The text was updated successfully, but these errors were encountered: