Your IP : 216.73.216.40


Current Path : /var/www/html/kpsingh/kpsingh/
Upload File :
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
	};
?>