I want to build a template that calls the content (static HTML) from an include (like asp) <td height="200" width="480" class="content"> <?php include "content/welcome_c.inc"; ?> </td> What am i doing wrong, Please? gbt
You should do
td height="200" width="480" class="content"> <?php include ("content/welcome_c.inc"); ?> </td>
MSN