It is important to know the difference between using single quotes and double quotes. In this post we will see the difference between them and which should be used when
Single Quotes:
<?php
$name = 'srinu chilukuri';
$member = 'This is $name';
echo $member;
?>
If echo $member variable it will print the result as it is without interpreted.output: This is $name
Double Quotes:
<?php
$name = 'srinu chilukuri';
$member = "This is $name";
echo $member;
?>
output: This is srinu chilukuri 


