I\'m trying to style the output of each echo.
Ideally I\'d like to use for each echo, but I\'m not too sure how to ach
I'd create a function that does this:
function decorated_echo($text) { echo '' . $text . ''; }
This way, you don't have to repeat this everytime you want this behaviour.