<div style="margin-left: 25px;" align="center">
    <table border="1" cellpadding="0" cellspacing="0">
        <thead>
            <tr class="ui-widget-header">
                <th width="190">Customer</th>
                <th width="100">Quantity</th>
                <th width="100">Sell price</th>
                <th width="100">New sell price</th>
                <th width="100">Purchase price</th>
            </tr>
        </thead>
        <tbody>
            <?php 
include_once "../model/Item.php";
$itemObj = new Item();
$customers = $itemObj->priceAdjReportDetail($_GET["iditem"], $_GET["cost"]);
foreach ($customers as $customer) {
    ?>
                <tr>
                    <td>
                        <?php 
    echo $customer["name"];
    ?>
                    </td>
                    <td>
                        <?php 
    echo round($customer["quantity"], 3);
    ?>
                    </td>
                    <td><?php 
    echo round($customer["price"], 3);