What difference does it makes when I use '' against "" ?
For example:
$example = 'Merry Christmas in Advance';
$eg = "Merry Christmas";
echo "$example";
echo '$example';
echo "$eg";
echo '$eg';
What would the output for each echo statements and what can we infer about '' vs "" in PHP ?