Quote:
Originally posted by DjSao
Hey just wondering about one thing, i added the threads title to the newspage, but i'm wondering if its possible to make the title capital letters only, like some kind of line of code that replaces all letters in the title to capitals.
|
In the While statment,
Add
BEFORE (about line 41)
PHP Code:
eval("\$newsbits .= \"".gettemplate("newsbit")."\";");
PHP Code:
$uppercasenews = strtoupper($newsarray[title]);
Then, to reference the uppercase title, instead of using $newsarray[title] in the newsbit template, change it to $uppercasenews.
Btw, i havent tested this, but it should work in theory