Good, I am glad you are making progress. To answer your question, yes. PHP code can and is most often inter-spersed within regular HTML code.
<?php /* So, you can have something like this: */ ?>
<p>Hello, <?php echo $name; ?>.</p>
<p>You have <strong><?php echo $numMessages; ?></strong> new messages.</p>
<p>Click <a href="view.php?id=<?php echo $id; ?>">here to view</a> them.</p>
<?php /* So, for a table, you can have: */ ?>
<form name="myForm" action="process.php" method="POST">
<table width="500" border="0" cellpadding="0" cellspacing="0">
<tr>
<td>Name</td>
<td><input type="text" name="name" size="50" /></td>
</tr>
<td>Email</td>
<td><input type="text" name="email" size="50" /></td>
</tr>
<tr>
<td>START Date</td>
<td><?php /* PHP code here */ ?></td>
</tr>
<td>END Date</td>
<td><?php echo 'the info you need to output via PHP here!'; ?></td>
</tr>
<tr>
<td> </td>
<td><input type="submit" value="submit" name="Submit" /></td>
</tr>
</table>
</form>
Hope that helps!!