Skip to main content
Participating Frequently
January 13, 2009
Question

php/mysql all caps

  • January 13, 2009
  • 12 replies
  • 1680 views
I have a php mysql insert record application built in dreamweaver. Is there a way to force or convert all inputted text to all caps? I tried a style sheet text transform, but that doesn't make the actual entry into the database all caps. Thanks.
This topic has been closed for replies.

12 replies

Participating Frequently
January 13, 2009
Thanks, I'll give it a try

The database feeds a content for a scoreboard ticker, lower case letters do not display as legibly as uppercase.
Inspiring
January 13, 2009
.oO(BrianArena)

>I have a php mysql insert record application built in dreamweaver. Is there a
>way to force or convert all inputted text to all caps?

You can use PHP to convert the text before it goes into the database
(see strtoupper()). May I ask why you want this?

>I tried a style sheet
>text transform, but that doesn't make the actual entry into the database all
>caps. Thanks.

Stylesheets are only for presentation in a user agent/browser, they
don't manipulate any data.

Micha