I’m need of a tiny help.I have a get statement on my process form like this
<?php echo $_GET['search']?>
Now how do i put “+” sign in between the spaces.Because what my current code does is just gets the data from the text of another form.
I would be glad if you could help.
Thanking You,
$newText=str_replace(‘ ‘, ‘ + ‘, $_GET[‘search’]);
str_replacewill replace the text as desired and save the new updated string in $newText