EVOLUTION-NINJA
Edit File: osl_details.php
<table class="table table-striped table-bordered table-hover"> <thead> <tr> <th scope="col"> OSL No. </th> <th scope="col"> Sub Code </th> <th scope="col"> Quality </th> <th scope="col"> Design </th> <th scope="col"> Article No. </th> <th scope="col"> Our Shade </th> <th scope="col"> Buyers Shade </th> <th scope="col"> Qty </th> <th scope="col"> Unit Price </th> <th scope="col"> Total Price </th> </tr> </thead> <?php foreach($oslDetails as $osl){ ?> <tr> <td><?php echo $osl['oslNo'];?></td> <td><?php echo $osl['subCode'];?></td> <td><?php echo $osl['quality'];?></td> <td><?php echo $osl['design'];?></td> <td><?php echo $osl['articleNo'];?></td> <td><?php echo $osl['ourShade'];?></td> <td><?php echo $osl['buyerShade'];?></td> <td><?php echo $osl['quantity'];?></td> <td><?php echo $osl['unitPrice'];?></td> <td><?php echo $osl['quantity'] * $osl['unitPrice'];?></td> </tr> <?php } ?> </tbody> </table>