use a space format
example:
if showing in HTML text use for space
function space ($num_space){
$space1 = " "; // blank space in html
$aa = ""; // place holder
for ($i=0;$i<=$num_space;$i++){
$aa .= $space1; // add space
}
return $aa; // return Num of sapce use with print or echo in body
}
print space(10) . "3160.14";
would give you ten spaces then shows 3160.14 of course you would have to change it to whatever your field are..
but you get the conceptt?