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!! Quote Link to comment 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 + Quote Link to comment 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 + 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.