You are on page 1of 7

Football Club Management System Project

Posted on January 15, 2017 by assembleyourpc

TECHNOLOGIES USED – PHP/JSP/Servlet/HTML/CSS/JavaScript/Servlets(Java)

TOOLS – APACHE TOMCAT

NEW FEATURE – USED PHP IN TOMCAT

VIDEO

PRESENTATION FILE BELOW

INTRODUCTION

 This Project is about an FOOTBALL CLUB MANAGEMENT.

 It is a software package which is helpful in the areas of Football.

 Our main aim is maintain records and make analysis based on reports generated.

 Admin can login as administrator . this will allow ADMIN TO get full control to the
System.

PROBLEM DEFINITION

 The main problem faced by the manual system was that it lead to huge wastage of
papers to maintain the records.

 Even It takes Time to search a Particular Record manually.

 There is a Chances of misplacing the Document/Record.

NEED FOR THE NEW SYSTEM

 The actual need for the new Football Mgt system is to reduce paper work and Time.
 This System can Store Details of Players, Coach, Teams , Transfer Details etc
 This system is built to reduce complexity of system for the users handling the system
 This system is a web-based application.

PROJECT SCOPE

 Our Existing system was an standalone, This Application will be an online system.
 Football Mgt System User to get all latest information About football and training.
 Admin can access all Information About Player, Teams and their Performance.
 Easy to Install
 Easy to Update and Search any Record

Solution

 This project is data base oriented because it uses oracle database.

 All the data are saved automatically in the defined place and are retrieve from there
directly by using this software.
 In terms of security this software is totally secure as it doesn’t give access to
unauthorized user as the username and password facility is provided.

Modules

 Manage users: Admin can manage the users and system like Update ,Add, Remove
etc

 Manage players: In this we can add all the data related to the player .

 Manage Teams: we can add new teams and also store required data of the team

 Search: The search can be very useful for finding desire players/team

 fixtures: In this, we can find all past football Matches results and upcoming matches
events or venue.

 Transfer History: In this, player can see all their transfer details, between one to
another clubs

 Exit: exit

ScreenShot and their Java Codes –


LOGIN SCREEN

1 import java.io.IOException;
import java.io.PrintStream;
2 import java.io.PrintWriter;
3 import java.sql.Connection;
4 import java.sql.DriverManager;
5 import java.sql.ResultSet;
6 import java.sql.SQLException;
import java.sql.Statement;
7 import javax.servlet.ServletException;
8 import javax.servlet.http.HttpServlet;
9 import javax.servlet.http.HttpServletRequest;
1 import javax.servlet.http.HttpServletResponse;
0 import javax.servlet.http.HttpSession;
1
public class Flogin
1 extends HttpServlet
1 {
2 public void doPost(HttpServletRequest paramHttpServletRequest,
1 HttpServletResponse paramHttpServletResponse)
throws ServletException, IOException
3 {
1 paramHttpServletResponse.setContentType("text/html");
4 PrintWriter localPrintWriter = paramHttpServletResponse.getWriter();
1
5 String str2 = paramHttpServletRequest.getParameter("username");
1 String str3 = paramHttpServletRequest.getParameter("password");
try
6 {
1 Class.forName("oracle.jdbc.driver.OracleDriver");
7 }
1 catch (ClassNotFoundException localClassNotFoundException)
{
8 System.out.println(localClassNotFoundException);
1 }
9 try
2 {
0 Connection localConnection =
DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:XE", "system",
2 "system");
1 Statement localStatement = localConnection.createStatement();
2
2 String str1 = "select *from FPlayer where users='" + str2 + "' and pswd='" +
2 str3 + "'";
ResultSet localResultSet = localStatement.executeQuery(str1);
3 if (localResultSet.next())
2 {
4 localPrintWriter.print("Welcome, " + str2);
2 HttpSession localHttpSession = paramHttpServletRequest.getSession();
5 localHttpSession.setAttribute("s1", str2);
paramHttpServletResponse.sendRedirect("http://localhost:8089/Football/Profil
2 eServlet");
6 }
2 else
7 {
paramHttpServletResponse.sendRedirect("http://localhost:8089/Football/FLogin
2 2.html");
8 }
2 localConnection.close();
9 localStatement.close();
3 }
catch (SQLException localSQLException)
0 {
3 System.out.println(localSQLException);
1 }
3 }
2 }
3
3
3
4
3
5
3
6
3
7
3
8
3
9
4
0
4
1
4
2
4
3
4
4
4
5
4
6
4
7
4
8
4
9
5
0
5
1
5
2
5
3
5
4
5
5
5
6
5
7
5
8
5
9
6
0
MAIN SCREEN AFTER USER LOGINS

HOMEPAGE : Football Management System

Advertisements
Report this ad
Report this ad

Share this:

 Twitter
 Facebook4
 Google

Posted in Project

Post navigation
PHP

Leave a Reply

Search for:

About by Self
6

You might also like