
PK 
<?php
session_start();
include_once('../../include/common.php');
include_once('../../include/connection.php');
include_once('../../include/session.php');
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="../../css/style.css" />
<title>view</title>
</head>
<body>
<form name="feedback" action="feed_action.php" method="post">
<table border="0px" width="100%" cellpadding="0" cellspacing="0">
<tr>
<td colspan="3"><?php include_once('../../include/adminheader.php'); ?></td>
</tr>
<?php
$selectForFeedBack="SELECT * FROM enquiry where eId=".$_GET['eId'];
$queryForFeedBack=mysql_query($selectForFeedBack);
$fetchForFeedBack=mysql_fetch_array($queryForFeedBack);
?>
<tr>
<td width="25%"> Left</td>
<td width="50%">
<table border="0px" width="100%" cellpadding="0" cellspacing="10">
<tr>
<th>Student Enquery</th>
<td width="20px"> </td>
<td> </td>
</tr>
<tr>
<td>Select Course</td>
<td width="20px">:</td>
<td><?=$fetchForFeedBack['course']; ?></td>
</tr>
<tr>
<td>Name</td>
<td width="20px">:</td>
<td><?=$fetchForFeedBack['name']; ?></td>
</tr>
<tr>
<td>Address</td>
<td width="20px">:</td>
<td><?=$fetchForFeedBack['address']; ?></td>
</tr>
<tr>
<td>City</td>
<td width="20px">:</td>
<td><?=$fetchForFeedBack['city']; ?></td>
</tr>
<tr>
<td>Pin Code.</td>
<td width="20px">:</td>
<td><?=$fetchForFeedBack['pinCode']; ?></td>
</tr>
<tr>
<td>Phone No.</td>
<td width="20px">:</td>
<td><?=$fetchForFeedBack['phone']; ?></td>
</tr>
<tr>
<td>E-mail</td>
<td width="20px">:</td>
<td><?=$fetchForFeedBack['email']; ?></td>
</tr>
<tr>
<td>How did you get hare ?</td>
<td width="20px">:</td>
<td><?=$fetchForFeedBack['feed']; ?> </td>
</tr>
<tr>
<td>Feedback / Suggestion</td>
<td width="20px">:</td>
<td><?=$fetchForFeedBack['suggestion']; ?></td>
</tr>
<tr>
<td></td>
<td align="center" colspan="2"></td>
</tr>
</table>
</td>
<td width="25%"> Right</td>
</tr>
<tr>
<td colspan="3"><?php include_once('../../include/adminfooter.php'); ?></td>
</tr>
</table>
</body>
</html>


PK 99