$fetched_column['title'] = str_replace(' ', '<SP>', $fetched_column['title']);
echo $fetched_column['title'] . '<br>';
When it echos out it strips the white_space but doesn't replace it with <SP>
. I'm guessing because of the <
>
. Don't know how to fix this so it echos out <SP>
in replace of the white_space?