I use a script to draw headlines from VBulliten. Is there anyway to force the thread titles to display in all lowercase?
| SitePoint Sponsor |

I use a script to draw headlines from VBulliten. Is there anyway to force the thread titles to display in all lowercase?
http://www.sianews.com: an independent, politically conservative news site





http://www.php.net/manual/en/function.strtolower.phpPHP Code:$headline = strtolower($headline);
echo($headline);
// this will appear in all lower case
// the opposite, or ALL UPPERCASE can be achieved by using
// strtoupper()
http://www.php.net/manual/en/function.strtoupperphp
Eric Coleman
We're consentratin' on fallin' apart
We were contenders, now throwin' the fight
I just wanna believe, I just wanna believe in us





Give strtolower(); a try.
-Colin
EDIT: I hate it when that happens....
![]()
Colin Anderson
Ambition is a poor excuse for those without
sense enough to be lazy.





Welll ya know, when ya get older, your fingers just don't move as fast![]()
Eric Coleman
We're consentratin' on fallin' apart
We were contenders, now throwin' the fight
I just wanna believe, I just wanna believe in us





Haha. I type quite fast, I assure you. Some have likened it to lightning.Originally posted by Zaire
Welll ya know, when ya get older, your fingers just don't move as fast![]()
When I get older, I'll also be able to upgrade to a broadband connection instead of this 28.8kbps on a 56kbps modem.
-Colin
Colin Anderson
Ambition is a poor excuse for those without
sense enough to be lazy.





Hrm...
Well.. I know I type faster than my SSH client can emulate....![]()
Eric Coleman
We're consentratin' on fallin' apart
We were contenders, now throwin' the fight
I just wanna believe, I just wanna believe in us





That's happened to me as well -- and I'm on a fast system.
-Colin
Colin Anderson
Ambition is a poor excuse for those without
sense enough to be lazy.





Sure sure... you just think your better than meOriginally posted by Aes
That's happened to me as well -- and I'm on a fast system.
-Colin![]()
Eric Coleman
We're consentratin' on fallin' apart
We were contenders, now throwin' the fight
I just wanna believe, I just wanna believe in us


Code:<style type="text/css"> body { text-transform: lowercase; } </style>
Bookmarks