capitalize first letter using the codeigniter query

$this->db->select(' *,CONCAT(UCASE(LEFT(couloum_name, 1)),
                             SUBSTRING(couloum_name, 2)) as alias_name',FALSE);
$this->db->from('table_name');
$response=$this->db->get();
return $response->result();

Comments

Popular posts from this blog

Enable the imap in support in xampp server