Viewing File: D:\INETPUB\VHOSTS\officespacebangalore.com\httpdocs\admin-1\feedback.php

<?php $title='Feedback'; require_once __DIR__.'/_header.php';$rows=db()->query('SELECT f.*,u.uname FROM feedback f LEFT JOIN user u ON u.uid=f.uid ORDER BY f.fid DESC')->fetchAll();?><section class="admin-panel"><div class="panel-head"><h2>Customer feedback</h2></div><div class="table-wrap"><table><thead><tr><th>User</th><th>Feedback</th><th>Status</th><th>Date</th></tr></thead><tbody><?php foreach($rows as $f):?><tr><td><?=e($f['uname']??'User #'.$f['uid'])?></td><td><?=e($f['fdescription'])?></td><td><?=e($f['status'])?></td><td><?=e($f['date'])?></td></tr><?php endforeach;?></tbody></table></div></section><?php require __DIR__.'/_footer.php'; ?>
Back to Directory File Manager