Forum Moderators: coopster
<td width="30" class="tblText" align="right">
<?=$a_row[airframehrs]?>
</td>
<td width="30" class="tblText" align="right">
<?=$a_row[enginehrs]?>
</td>
<td width="25" class="tblText" align="right">
<?php
$hrstogo = ($a_row[tachoatchk] + 50) - $a_row[airframehrs];
print $hrstogo;
?>
However, the first two columns are not aligning right, but the third is. Am I missing something obvious here?
The only thing I can think of is that there is something weird coming from the table which is leaving spaces on the right of the number. Would that be an issue and can I strip them off?