I have this bit of code
echo "$broad_theme","$specific_theme";
and I need there to be a space between the two words when they print out.
For example broad theme = development
specific theme =houses
so it prints out
developmenthouses
instead of development houses
I tried to do
echo "$braod_theme",   "$specific_theme";
that didn't work
thanks for any help