Hola,
Necesito acomodar en la siguiente tabla los valores de la columna "Total" que son valor en moneda al lado derecho. Si alguien me puede decir como lo puedo hacer se lo agradecere mucho. También no se si se puede cambiar color y tipo de letra.
Gracias por su ayuda.
echo "<table width='750' border='1' cellpadding='2' cellspacing='0' align='right' >
<tr>
<th>Tienda</th>
<th>Piezas</th>
<th>$ Total</th>
<th>Último registro</th>
</tr>";
while($row = mysql_fetch_array($result))
{
echo "<tr>";
echo "<td>" . $row['Tienda'] . "</td>";
echo "<td>" . $row['Piezas'] . "</td>";
echo "<td>" . $row['Total'] . "</td>";
echo "<td>" . $row['Hora'] . "</td>";
echo "</tr>";
}
echo "</table>";