i have searched a lot and still no chance, is there a way for calling a php function inside echo HTML ?
i also tried this and not worked.
<?php
echo <<<HTML
[HTML PARTS..]
<td colspan="2">its function: <? $z = func($x); echo $z; ?> </td>
...
HTML;
?>
function works outside of html.