Possible Duplicate:
Difference between single quote and double quote string in php
I need to include some php code within some html file that I generate via PHP.
I have tried the following but this is not working. Can you explain to me why?
<?php
$text='mc';
echo '<text>"$text"</text>'
?>