how do you remove spaces in a string?\
I tried:
$temp = "First Last"; //hoping for FirstLast
$temp = str_replace(" ", "", $temp);
But it didn't work.
Thanks
Rainworked for me.
$temp = "First Last"; //hoping for FirstLast
$temp = str_replace(" ","", $temp);
echo $temp;