Queria solicitar su ayuda para ver si me pueden despejar mi duda
tengo una base en donde almaceno las llamadas que se hacen durante el dia en mi trabajo, y quiero hacerlo en php+mysql pero no encuentro como solucionarlo.
Tengo mi codigo
Código PHP:
<?php
require ('connect.php');
$sql="select *, sum(costo) as tcosto from mes group by fecha, carrier";
$result = mysqli_query($con, $sql);
echo "<table border='1'>
<tr>
<th>fecha</th><th>ATT</th><th>AXTEL</th><th>AXTELSJR</th>
</tr>";
while($row = mysqli_fetch_array($result))
{
switch($row['carrier'])
{
case "ATT":
echo "<tr>";
echo "<td>" . $row['fecha'] . "</td>";
echo "<td>" . $row['tcosto'] . "</td>";
echo "</tr>";
break;
case "AXT":
echo "<tr>";
echo "<td>" . $row[''] . "</td>";
echo "<td>" . $row[''] . "</td>";
echo "<td>" . $row['tcosto'] . "</td>";
echo "</tr>";
break;
case "AXTSJ":
echo "<tr>";
echo "<td>" . $row[''] . "</td>";
echo "<td>" . $row[''] . "</td>";
echo "<td>" . $row[''] . "</td>";
echo "<td>" . $row['tcosto'] . "</td>";
echo "</tr>";
break;
}
}
echo "</table>";
mysqli_close($con);
include ('footer.php'); ?>
fecha ATT AXTEL AXTELSJR
2013-06-01 13324.38
536.86
11.92
2013-06-02 0.45
2.13
2013-06-03 27955.67
1045.03
3806.51
2013-06-04 29279.51
8895.89
2223.03
2013-06-05 29182.69
1209.89
2444.50
Como le puedo hacer para que me los muestre asi, como si fuera tipo excel?
Fecha ATT MEG AXT
6/1/2013 $13,324.38 $651.81 $536.87
6/2/2013 $0.45 $2.13
6/3/2013 $27,955.67 $1,289.91 $1,045.03