Re: what is keep this from working



On Wed, 28 Sep 2005 16:20:51 -0700, "Kilo Bravo" <kbrown1@xxxxxxxxxxx>
wrote:

>This is in myFile.html.
><?php file_get_contents("email.html");?>
>Why does the email.html contents not appear?

<? $file = file_get_contents('email.html'); ?>
<?=$file?> (same as <? echo $file; ?>)
.