Um...
It doesn't help.
I'll try to make it clearer:
I want the HTML that is between the if's {}'s to be executed anyway, independent on whether the condition was met or not, while the php should be proccessed only if the condition is met.
It means that if my page contains a:
<table>
<?php if (condition met) {
<tr>
<td>
blablabla...
</td>
<?php echo "<td>something</td>"?>
<td>
blablabla.
</td>
<?php } ?>
</tr>
</table>
The two cells containing "blablabla" would be seen in any case, but the middle cell with "something" should be seen only if the condition is met.
I will even explain why:
I've got pieces of php scattered all around the form/table I'm working with, and opening an "if ($condition_met)" for each one of them is a bother... Doing it once is OK, but every time would be internal suffering... Is there something that could help me out here?