I want to do an echo without having a space, even if I define it with a space.
This is how I defined it:
$closed = 'not yet';
I want it so if I put this (with whatever removes the space):
<?php echo $closed ?>
it will display like "notyet" instead of "not yet"
str_replace?