What?
You have an PHP page with HTML embedded in it right? Something like:
<?php /* My PHP/HTML Page */ ?>
<html>
<head>
<title>PHP Mixed with HTML</title>
</head>
<body>
<?php
/**
* Some interesting PHP stuff in here
**/
?>
<table>
<tr>
<td>Something</td>
<td>To show</td>
<td>everyone</td>
</tr>
</table>
<?php
/**
* Some more PHP magic... :)
**/
?>
</body>
</html>
You have something like that right?
[man]echo[/man] would work just fine. Or you could use [man]print[/man] instead.