Jump to content

An online school admission system


RizwanAhmedMemon

Recommended Posts

Hello programmers!I have been given a project to make an online school admission system, but I don't have much ideas how to do that. So, I need your help. What things I should consider and how the look of the website should be and how to maintain the database? What to understand first? etcSo, please help me as much as you can. By suggesting some samples that you have etc.Thanks.

Link to comment
Share on other sites

That is fairly vague question.You have to be specific You need to first write down he project requirements., without it is hard to guess what does the online school admission system suppose to do..You need to identify the system task and break those task to subtasks and approach each subtasks and solve them.

Link to comment
Share on other sites

Here is my purposal that I gave to my supervisor, see it and you will understand what I want:Project Title:Online Center / School Admission SystemAbstract:The objective of this project is to avoid tiresome and time-consuming process of getting admission in a center or school. Parents and individuals face the several hardships in visiting the place several times. It saves much time and money of the parents and individuals to get admission in the desired institute.Admission is necessary part of every student’s life. Parents of a child have to get their child admitted in a school or center.This online admission system allows students and parents to get admission just by sitting at home. The system asks for all the necessary information of a student and keeps it in the database.Purpose of the project:• To manage online admissions• To help the institute administration keep the record of admission online• To help students and parents get admission in the desired institute easily• To save time and money in applying just by sitting at home

Link to comment
Share on other sites

Here is my purposal that I gave to my supervisor, see it and you will understand what I want:Project Title:Online Center / School Admission SystemAbstract:The objective of this project is to avoid tiresome and time-consuming process of getting admission in a center or school. Parents and individuals face the several hardships in visiting the place several times. It saves much time and money of the parents and individuals to get admission in the desired institute.Admission is necessary part of every student’s life. Parents of a child have to get their child admitted in a school or center.This online admission system allows students and parents to get admission just by sitting at home. The system asks for all the necessary information of a student and keeps it in the database.Purpose of the project:• To manage online admissions• To help the institute administration keep the record of admission online• To help students and parents get admission in the desired institute easily• To save time and money in applying just by sitting at home
I recommend using PHP with SQL and HTML/CSS create a user system,with a login, and a dashboard, with a HTML form on a page, for example; name, admission place etcdeclare the variables in PHP with Post method. on submission run SQL querymysql_connect ([color=#444444]host,username,password,dbname);[/color] [color=#ff0000]$name = $_POST['name'][/color][color=#ff0000]$class = $_POST['class'][/color][color=#ff0000]$level = $_POST['level'][/color] mysql_query("INSERT into {TABLE NAME} VALUES ('{$name}', '{$class}', '{$level}') ?>For example (Thats one i sent to someone earlier :P)http://w3schools.invisionzone.com/index.php?showtopic=47661&pid=264267&st=0entry264267 then create an admin panel;and declare$name = mysql_query("SELECT name FROM {TABLE NAME}");$class = mysql_query("SELECT class FROM {TABLE NAME}");$level = mysql_query("SELECT level FROM {TABLE NAME}"); then echo '{$name}' etc.... in the admin panel as a form. If you dont understand let me know
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...