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();
SUBSTRING(couloum_name, 2)) as alias_name',FALSE);
$this->db->from('table_name');
$response=$this->db->get();
return $response->result();
Comments
Post a Comment