$var1 = "hello"; $var2 = "world"; $concat = $var1.' '.$var2; // $concat ='hello world' (with single quote) $concat = "$var1 $var2"; // $concat ='hello world' ( with double quote)