Sorry for interrupting this community for many times, because I'm the real noob in this community :/
I want to ask, what is the difference between the first script and the second script, although both is running same and properly.
First script:
Code: Select all
$Love = "Love";
echo "I" . $Love . "You";
Second script:
Code: Select all
$Love = "Love";
echo "I $Love You";
So can anybody explain it to me??