PK

ADDRLIN : /home/anibklip/adhocacademy.com/admin/
FLL :
Current File : /home/anibklip/adhocacademy.com/admin/form_view.php

<?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>
<link rel="stylesheet" type="text/css" href="../css/style.css" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>view</title>
</head>

<body>
<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 certificate where cId=".$_GET['cId'];
	$queryForFeedBack=mysql_query($selectForFeedBack);
	$fetchForFeedBack=mysql_fetch_array($queryForFeedBack);
?>
    <tr>
    	<td width="25%">&nbsp;</td>
		<td width="50%">
        	<table border="0px" width="100%" cellpadding="0" cellspacing="10"  class="contact">
                <tr bgcolor="#999999" style="height:45px;">
					<th align="center" colspan="4" class="list1">Student Detail</th>
            	</tr>
                <tr>
                	<td></td>
                    <td></td>
                    <td></td>
                    <td rowspan="10" valign="top" align="right"><img src="student_images/<?=$fetchForFeedBack['img']; ?>" width="120px"></td>
                </tr>
                <tr>
                	<td>Certificate No.</td>
                    <td width="20px">:</td>
                    <td><?=$fetchForFeedBack['certificateNo']; ?></td>
                </tr>
            	<tr>
                	<td>Name</td>
                    <td width="20px">:</td>
                    <td><?=$fetchForFeedBack['name']; ?></td>
                </tr>
                <tr>
                	<td>Father's Name</td>
                    <td width="20px">:</td>
                    <td><?=$fetchForFeedBack['fatherName']; ?></td>
                </tr>
                <tr>
                	<td>Registration Date</td>
                    <td width="20px">:</td>
                    <td><?=$fetchForFeedBack['regNo']; ?></td>
                </tr>
                <tr>
                	<td>Admission Date</td>
                    <td width="20px">:</td>
                    <td><?=$fetchForFeedBack['admiDate']; ?></td>
                </tr>
                <tr>
                	<td>Course</td>
                    <td width="20px">:</td>
                    <td><?=$fetchForFeedBack['course']; ?></td>
                </tr>
                <tr>
                	<td>Grade</td>
                    <td width="20px">:</td>
                    <td><?=$fetchForFeedBack['grade']; ?></td>
                </tr>
                <tr>
                	<td>How did you get hare ?</td>
                    <td width="20px">:</td>
                    <td><?=$fetchForFeedBack['duration']; ?>	</td>
                </tr>
                <tr>
                	<td>Adderss</td>
                    <td width="20px">:</td>
                    <td><?=$fetchForFeedBack['address']; ?></td>
                </tr>
                <tr>
                	<td>Center Name</td>
                    <td width="20px">:</td>
                    <td><?=$fetchForFeedBack['centerName']; ?></td>
                </tr>
                <tr>
                	<td></td>
                    <td align="center" colspan="2"></td>
                </tr>
            </table>
        </td>
        <td width="25%"></td>    
    </tr>
    <tr>
		<td colspan="3"><?php include_once('../include/adminfooter.php'); ?></td>    
    </tr>
</table>
</body>
</html>


PK 99