| Current Path : /var/www/html/kpsingh/kpsingh/ |
| Current File : /var/www/html/kpsingh/kpsingh/adminres.php |
<link rel = "stylesheet" type="text/css" href="css/adminres.css">
<?php
include 'template.php';
include 'db.php';
$sql = "SELECT * FROM `adminres`";
$result = mysqli_query($dbconn, $sql);
while($obj = mysqli_fetch_object($result)){
$res = $obj->resp;
?>
<div id = "resp">
<?php
echo $res;
?>
</div>
<?php
};
?>