Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8901571
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T01:23:29+00:00 2026-06-15T01:23:29+00:00

e.g. If I have these variables: $variable1 = ABCDEFG; $variable2 = AbCDefG; and stuff

  • 0

e.g. If I have these variables:

$variable1 = "ABCDEFG";
$variable2 = "AbCDefG";

and stuff in db like these:

ABCDEFG
IJKLMNO
PQRSTUV
...

And if I try to use like() method like this:

function get_users()
{

    $q = $this->db->select('*')
                  ->from('users')
                  ->order_by('created asc')
                  ->like('username', $variable1)
                  ->get();
    return $q;

}

The result will be OK and find the ABCDEFG record from database.

However, if I pass $variable2 with Uppercase and Lowercase the result will be none:

function get_users()
{

    $q = $this->db->select('*')
                  ->from('users')
                  ->order_by('created asc')
                  ->like('username', $variable2)
                  ->get();
    return $q;

}

, which is wrong , because I need to ignore if it is lowercase or uppercase.

How to solve this?

Btw. my db collation is utf8_general_ci

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T01:23:30+00:00Added an answer on June 15, 2026 at 1:23 am

    Try this one:

    function get_users()
    {
    
        $q = $this->db->select('*')
                      ->from('users')
                      ->order_by('created asc')
                      ->like('LOWER(username)', strtolower($variable2))
                      ->get();
        return $q;
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have these variables: boost::regex re //regular expression to use std::string stringToChange //replace this
I have some variables like these: a(1)=00:26:00 a(2)=744:32:00 a(3)=8040:33:00 I want to convert them
I have these variables: Int16 value; decimal x, y; I tried to do this
I have these variables: (not literally, but this is what I obtain from a
I have a dict of configuration variables that looks something like this: self.config =
Let's say I have these two variables $number = 1; $word = one; and
If I define these variables: double x0, xn, h; int n; and I have
I have certain PHP class methods that access external variables. These variables are not
I have these two functions (with Point2D & LineVector (has 2 Point2D member variables)
My game units have an angle variable, and a targetAngle variable. These variables range

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.