Capitalizing text into a website title

GBouida

New Member
I have a text coming from a sql db that is not capitalized.In my HTML, I usually apply CSS text-transform to capitalize the text, but now I face an issue:I want this text to be part of the title of my site. However, I cannot style within the title.How could I style the text, then grab it on PHP and then plug it into my title?Here is what I tried which did not work:\[code\]<title>Shop - <p style="text-transform:capitalize;"><?php echo $row2['name'];?></p></title>\[/code\]Thanks!
 
Top