I want to execute a PHP File in my HTML Code.
I Can't use PHP language like: <?php ... ?>
Because the Site is working with templates, and it's impossible to rename them into php.
So I must find a way, how to execute the PHP (nice function I found in the web) on a specific place of the HTML Code, so that everything in the PHP file will appear there.
For Example:
<tr>
<th>table:</th>
<td>
!!EXECUTE PHP HERE!!
</td>
</tr>
Someone an idea?