smc Posted January 27, 2007 Share Posted January 27, 2007 Hello,Basically I'm creating a CMS for a News website. Instead of posts I have articles. I've created a PHP to view the story (ie. Retreives it's data from the DB) at viewstory.php. An image links to viewstory.php?story=STORY NAME. The problem is the story name will get it from the database.When someone submits a story they enter the name of the article, for example: "my story". When submitting the form I would like it to become "my+story" so it is easier to submit in the title bar. I also will need to retreive the title from the database and strip it of it's +'s for echoing in the article itself.Any help would be much appreciated!! Link to comment https://forums.phpfreaks.com/topic/35898-solved-tranforming-titles-to-s/ Share on other sites More sharing options...
Jessica Posted January 27, 2007 Share Posted January 27, 2007 str_replace(" ", "+", $string);Although you should use -, not + Link to comment https://forums.phpfreaks.com/topic/35898-solved-tranforming-titles-to-s/#findComment-170237 Share on other sites More sharing options...
smc Posted January 27, 2007 Author Share Posted January 27, 2007 Thank you very much, I'll give it a try.Also on your recommendation I've chosen - as opposed to + Link to comment https://forums.phpfreaks.com/topic/35898-solved-tranforming-titles-to-s/#findComment-170242 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.