Glue together variable and string



How do I glue together a variable with a string?

$suffix = "px";

$height = 14;

I need to print "14px" widthout any whitespace inbetween 14 and px. How
do I do it?

.