How can I end a variable name in a string without using space or any other special character?
Example is there anything I can put between $num
and st
to output 1st
instead of 1 st
$num = 1;
echo "$num st";
Without using the dot opperator for concatination