Given below is Source Code of admissionCalender.php file. Here information about admission date, last date, late fee etc. will be displayed.
Save the file with name admissionCalender.php in folder of your project name you created. Like onlineadmissionproject
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">
<head>
<title>Welcome To Online Admission</title>
<link rel="STYLESHEET" type="text/css" href="styles/student_forms.css" />
</head>
<body>
<?php include("header.php");?>
<!-- Form Code Start -->
<div class='mainDiv'>
<font size="5" name="sans-serif"><div class="heading" align="center">Distance Learning University Admission Calender</div></font></br></br>
<div align="center">Last date for receipt of application with late fee of Rs.200/-</div></br></br>
<div align="center">
<table>
<tr>
<td></td>
<td>January Cycle</td>
<td>    </td>
<td>July Cycle</td>
</tr>
<tr>
<td>Application Form Available Online</td>
<td>01 June</td>
<td></td>
<td>01 December</td>
</tr>
<tr>
<td>Last Date of applying Online</td>
<td>31 October</td>
<td></td>
<td>30 April</td>
</tr>
<tr>
<td>Application for applying Online with Late Fee of Rs.200/-</td>
<td>01 November</td>
<td></td>
<td>01 May</td>
</tr>
<tr>
<td>Last Date of Receipt of Application form at Regional Centre</td>
<td>30 November</td>
<td></td>
<td>31 May</td>
</tr>
</table>
</div>
</br></br>
</div>
<?php include("footer.php");?>
</body>
</html>
Save the file with name admissionCalender.php in folder of your project name you created. Like onlineadmissionproject
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">
<head>
<title>Welcome To Online Admission</title>
<link rel="STYLESHEET" type="text/css" href="styles/student_forms.css" />
</head>
<body>
<?php include("header.php");?>
<!-- Form Code Start -->
<div class='mainDiv'>
<font size="5" name="sans-serif"><div class="heading" align="center">Distance Learning University Admission Calender</div></font></br></br>
<div align="center">Last date for receipt of application with late fee of Rs.200/-</div></br></br>
<div align="center">
<table>
<tr>
<td></td>
<td>January Cycle</td>
<td>    </td>
<td>July Cycle</td>
</tr>
<tr>
<td>Application Form Available Online</td>
<td>01 June</td>
<td></td>
<td>01 December</td>
</tr>
<tr>
<td>Last Date of applying Online</td>
<td>31 October</td>
<td></td>
<td>30 April</td>
</tr>
<tr>
<td>Application for applying Online with Late Fee of Rs.200/-</td>
<td>01 November</td>
<td></td>
<td>01 May</td>
</tr>
<tr>
<td>Last Date of Receipt of Application form at Regional Centre</td>
<td>30 November</td>
<td></td>
<td>31 May</td>
</tr>
</table>
</div>
</br></br>
</div>
<?php include("footer.php");?>
</body>
</html>