Just thought I would add my 2 cents worth.
You can have your php emmbedded in an existing HTML page as long as it is called .php
eg.
<HTML>
<BODY>
I love PhpBuilder today at <? echo date('r') ?>.
</BODY>
</HTML>
This way you can leave all the html alone and just add bits and peices of php.
Also you can break out of php in the middle of an if() statement ( or other control things ) to print html.
if( true )
{?>
<P>true html here </P>
<?
}
else
{?>
<P>False html here</P>
<?
}
HalfaBee