このレポート形式をワードまたはエクセルでエクスポートしたいのですが、助けてください。このコードを使用して、データベースから適切なデータを取得しています。これをエクスポートしたいと思います。
<form name="form1" method="post" action="daily.php">
<h1 style="padding-left:150px;"> Daily Report </h1>
<div class="report" style="overflow:auto;height:400px;">
<?php $q="select cid,gtotal from db_transaction where tdate='$dat'";
$a=mysql_query($q);
echo '<table border="1" class="curvedEdges">';
echo '<th width="30">Sr </th><th> Customer Name </th> <th>Services </th> <th>Service By </th> <th> Amount</th>';
$i=1;$gd=0;
while($row=mysql_fetch_array($a))
{
$qa=mysql_query("select cname from db_customers where cid=$row[0]");
$cnm=mysql_fetch_array($qa);
$sd=mysql_query("select service,price from db_sale_service where cid=$row[0]");
echo '<tr><td>'.$i.'</td><td>'.strtoupper($cnm[0]).'</td><td><table><th>Name</th><th>Price</th>';
while($snm=mysql_fetch_array($sd))
{
echo '<tr><td>'.$snm[0].'</td> <td>'.$snm[1].'</td></tr>';
}
$sd=mysql_query("select serviceby from db_sale_service where cid=$row[0]");
$snm=mysql_fetch_array($sd);
echo '</table></td><td>'.$snm[0].'</td><td>'.$row[1].'</td></tr>';
$i++; $gd+=$row[1];
}
echo '<tr><td colspan="3" align="center"><strong>Tolday\'s Total </strong></td><td colspan="2" align="center"><strong>'.$gd.'</strong></td></tr>';
echo '</table>';
?> </div>
</form>