JMCT Polytechnic, Nasik: Department of Computer Engineering
JMCT Polytechnic, Nasik: Department of Computer Engineering
2021-2022
Jumma Masjid Charitable Trust’s
CERTIFICATE
Features of PHP:-
Platform Independence
Interpreted
Faster
Open source
Case Sensitive
Applications of PHP:-
Webpages and web based application
Web content Management System
Ecommerce Applications
GUI based Applications
Data Representation
Introduction of Online Admission System:-
Online Admission System is aimed at developing an online admission application for a college.
This system is an online system that can be accessed throughout the organization and outside
as well with proper login provided. Our system has two type of accessing modes, administrator
and user. Student management system is managed by an administrator. It is the job of the
administrator to admit and monitor the whole process. When a user log in to the system. He
would only view details of the student. He can't perform any changes .The system has two
modules. They are
User
Administrator
System Analysis:-
System analysis aims at establishing requests for the system to be acquired, developed and
installed. It involves studying and analyzing the ways of an organization currently processing the
data to produce information. Analyzing the problem thoroughly forms the vital part of the
system study. In system analysis, prevailing situation of problem carefully examined by breaking
them into sub problems. Problematic areas are identified and information is collected. Data
gathering is essential to any analysis of requests. It is necessary that this analysis familiarizes
the designer with objectives, activities and the function of the organization in which the system
is to be implemented.
Proposed System:-
The main goal of the system is to automate the process carried out in the organization
with improved performance and realize the vision of paperless admission. Some of the goals of
the system are listed below:
Manage large number of student details.
Manage all details of student who registered for the course
Create student accounts and maintain the data’s effectively.
View all the details of the students.
Reduce the work load in interview the students for selection
Activities like updating, modification, deletion of records should be easier.
Hardware Configuration:-
System : Multimedia PC
Processor : Pentium 4 or above
Memory : 512MB RAM
Hard Disk : 80GB or above
Keyboard : 104 standards
Monitor : SVGA
Modem : Dial up/Broadband
Software Configuration:-
Front end : PHP, HTML, CSS, JavaScript
if(isset($_REQUEST["a_sub"]))
{
$aid=$_POST['a_id'];
$apwd=$_POST['a_ps'];
if($aid!=''&&$apwd!='')
{
$query=mysqli_query($con ,"select * from t_admin where ad_id='".$aid."' and ad_pswd='".
$apwd."'");
$res=mysqli_fetch_row($query);
if($res)
{
$_SESSION['ad']=$aid;
header('location:admin.php');
}
else
{
echo '<script>';
echo 'alert("Invalid Login ! Please try again.")';
echo '</script>';
}
}
else
{
echo '<script>';
echo 'alert("Enter both username and password")';
echo '</script>';
}
}
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link type="text/css" rel="stylesheet" href="css/login.css"></link>
<link rel="stylesheet" href="bootstrap/bootstrap.min.css">
<link rel="stylesheet" href="bootstrap/bootstrap-theme.min.css">
<script src="bootstrap/jquery.min.js"></script>
<script src="bootstrap/bootstrap.min.js"></script>
<script language="javascript" type="text/javascript" src="jquery/jquery-1.10.2.js"></script>
<script language="javascript" type="text/javascript" src="jquery/jquery-ui.js"></script>
<link href="jquery/jquery-ui.css" rel="stylesheet" type="text/css" />
<title></title>
</head>
<body style="background-image:url('./images/inbg.jpg');">
<form id="adminlogin" action="adminlogin.php" method="post">
<div class="container-fluid">
<div class="row">
<div class="col-sm-12">
<img src="images/cutm.jpg" width="100%" style="box-shadow: 1px 5px 14px
#999999; "></img>
</div>
</div>
</div>
<div id="adivtop">
<br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br>
<div class="container-fluid">
<div class="row">
<div class="col-sm-12">
<h3>Login</h3>
<input type="text" id="a_id" name="a_id" class="form-control"
style="width:200px;" placeholder="Admin ID"><br><br>
<input type="password" id="a_ps" name="a_ps" class="form-control"
style="width:200px;" placeholder="Password"><br><br>
<input type="submit" id="a_sub" name="a_sub" value="Login"
class="toggle btn btn-primary"><br>
</div>
</div>
</div>
</div>
</body>
</html>
Output:-
Conclusion:-
We understood the concept of PHP and how to run PHP program in
localhost/foldername/filename. Develop a web application. Simple, easy and efficient system.
Overall the project performs well, and while it does not include all the feature that may have
been desired, it live upto initial expectation.