what is the diffrence between echo ‘$a’, echo “$a” and echo $a?

$a=”Hello”;

echo $a; // hello

echo ‘$a’; // $a

echo “$a”; // hello

 

 

 


Comments

Leave a Reply

Your email address will not be published. Required fields are marked *