-
Results Computation System In Higher Institutions Using Php, Html, Css, Mysql
APPENDIX A -- [Total Page(s) 4]
Page 1 of 4
-
-
-
APPENDIX
Index.Php
<?php
ini_set('display_errors',0); require_once 'Tables.php';
?>
<!DOCTYPE html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Kwararafa University Wukari</title>
<link rel="shortcut icon" href="images/kuwlogo.png" />
<link rel="stylesheet" href="style.css" />
<style>
input {
text-align: center;
}
</style>
</head>
<body>
<img src="images/kuw.png" style="width:60%; height:120px;margin:10px auto;margin- left:18%">
<marquee behavior="alternate" scrollamount="3"><h1>RESULT PROCESSING SYSTEM (COMPUTER SCIENCE DEPARTMENT)</h1></marquee>
<div id="menu" align="left">
</div>
<center>
<div style="min-height:350px;width:98%;margin:35px auto 0;">
<div style="float:left;width:32%;margin-right:1%;">
<input type="button" value="LECTURER LOGIN" onClick="window.location.href='LecturerPanel';"/>
</div>
<div style="float:left;width:32%;margin-right:1%;">
<input type="button" value="EXAMS OFFICER LOGIN" onClick="window.location.href='ExamsPanel';"/>
</div>
<div style="float:left;width:32%;margin-right:1%;">
<input type="button" value="HOD LOGIN" onClick="window.location.href='HODPanel';"/>
</div>
</div>
</center>
<div id="footer"><p>© <?php echo date('Y'); ?> Kwararafa University, Wukari</p></div>
</body>
</html>
Testing.Php
<?php
$text="My Sample Text";
$len=strlen($text);
$lst=$len - 2;
$ending=substr($text, $lst, 2); echo $ending;
?>
Tables.php
<?php
$host="localhost";
$user="root";
$pass="";
$db="dbresults";
$conn= new mysqli($host, $user, $pass);
$conn->query("CREATE DATABASE IF NOT EXISTS `$db`");
$conn->query("USE `$db`");
$conn->query("CREATE TABLE IF NOT EXISTS `hod_login` (
`id` int(11) unsigned not null auto_increment,
`username` varchar(50) unique not null,
`password` varchar(50) not null,
`name` varchar(100) not null, PRIMARY KEY(id)
)ENGINE=InnoDB CHARSET=DEFAULT AUTO_INCREMENT=1");
$conn->query("CREATE TABLE IF NOT EXISTS `revapply` (
`id` int(11) unsigned not null auto_increment,
`course` varchar(50) unique not null,
`status` varchar(50) not null, PRIMARY KEY(id)
)ENGINE=InnoDB CHARSET=DEFAULT AUTO_INCREMENT=1");
$conn->query("INSERT INTO `hod_login` VALUES('1', 'HOD',
'admin123', 'HOD')");
APPENDIX A -- [Total Page(s) 4]
Page 1 of 4
-
-
ABSRACT - [ Total Page(s): 1 ]Abstract Coming soon ... Continue reading---
CHAPTER ONE - [ Total Page(s): 2 ]My research focuses on the design and implementation of an application
where student results can be stored, users can access this software from
anywhere as long as the computer they are working on is on the network
same as the application server. This application enables users with the
right permission to insert new user details, students’ examination
records as well as updating these records whenever necessary. This
research seeks to provide an alternative to the manual syste ... Continue reading---
CHAPTER TWO - [ Total Page(s): 1 ]CHAPTER TWO LITERATURE REVIEW2.1 IntroductionBarrett (1999) encapsulated the essence of a student information system. He defines SMIS as “an integrated software package that maintains, supports, and provides inquiry, analysis, and communication tools that organize student accountability data into information to support the educational processâ€.A result management system (RMS) is only an aspect of a complete SIS package. The U.S. Department of Education (2008) viewed student dat ... Continue reading---
CHAPTER THREE - [ Total Page(s): 3 ]A SIMPLE BLOCK DIAGRAM OF THE PROPOSED SYSTEM IS GIVEN BELOW ... Continue reading---
CHAPTER FOUR - [ Total Page(s): 8 ]CHAPTER FOURSYSTEM DESIGN AND IMPLEMENTATION4.1 IntroductionA system is an organized collection of inter related subsystems with a collective responsibility of meeting a goal. Dependent subsystems are regularly interacting while independent group of components forming a unified whole work stand alone in achieving a specified task.A system is also defined as an organized or complex unitary whole. System Analysis is therefore the study of the systems’ processes including investigation ... Continue reading---
CHAPTER FIVE - [ Total Page(s): 1 ]CHAPTER FIVESUMMARY, CONCLUSION AND RECOMMENDTIONS5.1 SummaryThis Research work focuses on the use of computer system with reference to Results Processing in the Department of Mathematics, Statistics and Computer Science of Kwararafa University, Wukari.The work covers the manual system of operations as regards the problems identified, stating the aims of the new system, stating the various specifications and then implementing the programs. The work was successfully developed using PHP prog ... Continue reading---
REFRENCES - [ Total Page(s): 1 ]REFERENCEBarrett, S. (1999). Information’s Systems: An Exploration of Factors Influencing Effective Use. Journal of Research on Computing in Education, (Vol. 32, No. 1, pp. 4-16).Eloba, P.C (1998). Computers in School Record Keeping Technical Education. Ikeja, Lagos State: Ekon Press.Anigbogu, S.O. (2000). Computer Application and Operation, (1st ed., Vol. 1, No.2, pp.30-39). Awka: Optimum Press.Ekpenyong, M. E. (2008). A Real-Time IKBS for Students’ Results Computation.Internation ... Continue reading---