Hello everyone, I just have a quick question about string manipulation and removing spaces from within a string. For example, say I have the following string attached to a variable, lets call it $johnsname :
<?php
$johnsname = "John Bob Steven Doe"
?>
Is there any way I can manipulate the string to give me "JohnBobStevenDoe" (or even better yet "johnbobstevendoe", by removing the spaces (and/or making it all under-case letters)?
I just want to thank you guys for all the help you've provided me thus far.