I need to place all this within the the echo, but get nothing but a blank page when doing so. (so this only shows when values are present.)
<?php if ($three!=''){echo 'right in here';}
?>
Here's is what's being echoed:
<?php echo $row_State3['State']; ?></font></strong><br>
<table width="" border="0" cellspacing="0" cellpadding="0">
<?php
$tdcount=0;
do {
$tdcount++;
if ($tdcount==6) { $tdcount=1; }
if ($tdcount==1) { echo '<tr>'; }
?>
<td valign="top">
<table>
<tr>
<td width=""><input type="checkbox" name="commercial[]"
value="<?=$row_State3['CountyFIPS']?>"<?php echo $row_State3['mtfkparam']>0?"checked":""; ?>>
</td>
<td width=""> <font size="2" face="Arial, Helvetica, sans-serif">
<?=$row_State3['County']?>
</font></td>
</tr>
</table>
</td>
<?php
if ($tdcount==5) { echo '</tr>'; }
} while ($row_State3 = mysql_fetch_assoc($State3));
?>
</table>
I'm not sure where to begin on this. Cutting and pasting dosn't do it.