ID:274815
 






<?php

$myvar = "Hello World";

echo $myvar;

?>







My PHP code it dosn't work, and I know my server supports it.
You don't embed php into html, you embed html into php:

<?php
$myvar = "Hello world!";

echo "<html>\n<BODY>\n$myvar;\n</BODY>\n</HTML>";
?>