rahulvicky00 Posted December 4, 2011 Share Posted December 4, 2011 I am putting title in my URL whenever a new auto generated page is generates, so if i use single word tile then it is fine but when there is more that two words in the title it shows space in every word and therefor in title too. how can i add this hyphen or any other special char to my URL so it would look like? i.e. If i use title to MY FIRST WEB PAGE.php, what should i do so i can make it like MY-FIRST-WEB-PAGE.php Quote Link to comment Share on other sites More sharing options...
marcelobm Posted December 4, 2011 Share Posted December 4, 2011 I would do something like this $title = 'MY FIRST WEB PAGE.php'; $title_no_white_space = str_replace(' ', '-', $title); echo $title_no_white_space; // echo MY-FIRST-WEB-PAGE.php Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.