- 1
Can you people answer to this questions
what is the differences between single quoted string and double quoted string in php.....
2 Respostas
0
doubles takes var values :
$text = "random text";
echo 'doesn't display $text';
//doesn't display $text
echo "display $text";
//display random text
0
Meet Mehta I don't agree :(