Multi Table Select (Active Records) |
I am trying to check multiple databases with user given string. But SQL query always returns true. It must return false, if phone number exist in individual or corporate databases.
Individual Users Database: Code: | id | name | phone | gender | Corporate Users Database: Code: | id | name | phone | company | PHP: PHP Code: $phone = '5551928321'; // $this->input->post('phone', true); I will be very pleased if someone light me up for see how it will be work. Thank you so much.
Why did you save data in different databases? You can create a single database with two tables. One for "Individual Users" and other for "Corporate Users ". then you do a join. Sorry for my poor english
![]()
Assuming you meant different tables, not different databases...
Have you tried to debug by using the profiler $this->output->enable_profiler(TRUE) or sending $this->db->last_query() to the log? Does the query shown by one of the above commands work if you run it manually at the command line or in something like PhpMyAdmin? |
Welcome Guest, Not a member yet? Register Sign In |