How can i output this in a table?
<?php echo "Cashier Name: Ajumobi Jegede"; echo "<p>XYZ Stores</p>"; echo "<p>NO.5 Ibori Street</p>"; echo "<p>Warri, Delta State</p>"; $mouse = 800 * 10; $stapler = 2000 * 20; $ballPen = 1500 * 35; $writingPad = 1000 * 40; $totalPrice = $mouse + $stapler + $ballPen + $ballPen + $writingPad; $vatAmount = $totalPrice * 0.06; $totalBill = $vatAmount + $totalPrice; echo "<p>Product Unit Price Quantity Ordered Total Cost</p>"; echo "<p>Mouse N800.00 10 $mouse</p>"; echo "<p>Stapler N2000.00 20 $stapler</p>"; echo "<p>Ball Pen N1500.00 35 $ballPen</p>"; echo "<p>Writing Pad N1000.00 40 $writingPad</p>"; echo "<p>Valut Added Tax(VAT) is 6%</p>"; echo "<p>Your Total Bill is $totalBill </p>"; ?>