CODE
<?php
$abc='123';
include 'index.htm';
?>
$abc='123';
include 'index.htm';
?>
index.htm
HTML
<table width="200" border="1">
<tr>
<td>$abc</td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
</table>
<tr>
<td>$abc</td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
</table>
it shows this pic
http://i19.photobucket.com/albums/b190/kakingho/abc.jpg
but i want to show this
http://i19.photobucket.com/albums/b190/kakingho/123.jpg
i want to separate main php codes in php file and main website structure in htm file~
how to do that?!
i dont want to type this in htm file, any other method??
HTML
<table width="200" border="1">
<tr>
<td><?PHP $abc; ?></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
</table>
<tr>
<td><?PHP $abc; ?></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
</table>
thx~

