I am generating URL through 'fopen' when a new page created i am using the URL as the title of that page which i am inserting when user enters a title.. Now the issue is if user enters multi words title then the URL got space after every word which looks very unprofessional.. kindly help me to resolve this issue, what can i do to resolve this problem.. Thanks in advance...
i am using this but its not working actually, my code is : $pagename = $_POST['title'].'.php'; str_replace(" ", "_", $pagename);
You'll need to capture the result of str_replace. Try: $pagename = $_POST['title'].'.php'; $pagename = str_replace(" ", "_", $pagename); PHP: