the reason it is doing this is not because you are using the PHP include. You probably have "CENTER" defined in your style sheets or tables somewhere. I am pretty sure because "center" is not the default. alignment left is the default.
You can check your CSS file or your html pages for the "center" definition. You can just use a text editor and search for "center".
One way to "fix" this is to put this around your include statement
<p style="text-align:left"><?php include("page.html") ?></p>
but this will not always work because if you have any </p> in your page.html, it will default back to center
Reply