I need help would anybody no how to replace all the spaces within a sentence or phrase and replace them with using a code.
thanks alotMore:
I need help would anybody no how to replace all the spaces within a sentence or phrase and replace them with using a code.
thanks alotMore:
Hi,
in wich language you want the code to be.
If possible id prefer php please.
thanks alot
php Code:
$qry = "this is my test";
$qry = trim($qry);
$spremoved = str_replace(" ", " ",$qry);
echo "$spremoved";
?>
Bookmarks