G:
/
PleskVhosts
/
seeonsoft.com
/
hp.thefalconunited.com
/
up file
home
<?php include('innerpageheader.php'); include('config.php'); $cid = $_GET['cid']; ?> <section> <div class="content add-details"> <div class="in-content-wrapper"> <div class="box"> <div class="row no-gutters"> <div class="col-12 table-responsive"> <table id="example" class="table table-hover responsive listing"> <thead> <tr> <th>#</th> <th>Service</th> <th>Description</th> <th>Amount</th> <th>Action</th> </tr> </thead> <tbody> <?php $i = 1; $result1 = $js->prepare('SELECT * FROM `otherservices` WHERE custid = :cid'); $result1->execute(array(':cid' => $cid)); while($row1 = $result1->fetch(PDO::FETCH_ASSOC)) { $oid = $row1['id']; $services = $row1['services']; $amount = $row1['amount']; $descr = $row1['descr']; echo "<tr>"; echo "<td>$i</td>"; echo "<td>$services</td>"; echo "<td>$descr</td>"; echo "<td align='right'>$amount</td>"; echo "<td>"; ?> <a href="edit_otherservices.php?oid=<?php echo $oid?>&cid=<?php echo $cid?>" target="_blank"><i class="fa fa-edit" style="color:#006;"></i></a> <a href="delete_travelforcustomers.php?oid=<?php echo $oid?>&cid=<?php echo $cid?>"><i class="fa fa-times-circle" style="color:red"></i></a> <?php echo "</td>"; echo "</tr>"; $i++; } ?> </tbody> </table> </div> </div> </div><!-- end in-content-wrapper --> </div><!-- end add-details --> </section> <!-- ===========End Innerpage-wrapper============= --> </div><!-- end wrapper --> <?php include('footer.php'); ?>