Hi there,

I have developed web app with acl(access control list) in php. it will have 5 panels.all panels are working fine ..
all letters are showing in lowercase.this thing is happening in company panel.anybody can resolve this issue....

Member Avatar for diafol

How much of this relevant to us? What do you actually want to know? How to make the whole word uppercase or just the first letter of each word (capitalize)?

If you search the php.net manual, I'm sure you would have come across ucwords and strtoupper and mb_strtoupper and ucfirst and mb_convert_case

You can check those out yourself.

Additionally, you could do it through CSS, with, e.g.:

p.uppercase {
    text-transform: uppercase;
}

p.capitalize {
    text-transform: capitalize;
}
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.