konetch Posted April 5, 2009 Share Posted April 5, 2009 I want to capittalize the first letter of my title. This is the script I'm using... <?php $page = end(explode('/' , $_SERVER['SCRIPT_NAME'])); $title = str_replace('.php', '', $page); echo '<title>KonetchReport | ' . $title . '</title>'; ?> How would you capitalize the first letter of the '$title'? Thanks Link to comment https://forums.phpfreaks.com/topic/152620-solved-capitalize-first-letter/ Share on other sites More sharing options...
sasa Posted April 5, 2009 Share Posted April 5, 2009 look functions ucfirst() ucwords() Link to comment https://forums.phpfreaks.com/topic/152620-solved-capitalize-first-letter/#findComment-801547 Share on other sites More sharing options...
konetch Posted April 5, 2009 Author Share Posted April 5, 2009 Thanks Link to comment https://forums.phpfreaks.com/topic/152620-solved-capitalize-first-letter/#findComment-801550 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.