I was wondering how can I add extra whitespace in php is it something like \\s please help thanks.
Is there a tutorial that list these kind of things th
PHP is an easy language with multiple solutions. A Quick Solution would be using Double Quotes " ". Example Below.
$var1 = "Hello";
$var2 = "World";
$var3 = "How";
$var4 = "are";
$var5 = "you";
$var6 = "?";
$var7 = ",";
echo "$var1 $var2$var7 $var3 $var4 $var5$var6";
//Output: Hello World, How are you?