PHP And MySQL Project On Online Wedding Planner

This project Online Wedding Planner has been developed on PHP and MySQL. Here we are providing best php projects free download with source code, datab...
Author:  FreeProjectz.com

126 downloads 2930 Views 4MB Size

Recommend Documents

This project Online Wedding Planner has been developed on PHP and MySQL. Here we are providing best php projects free download with source code, database and documentation. PHP projects for beginne...

Online Wedding Planner

This project has been developed on PHP which facilates user to chat. The interface of the project has been developed like google chat where all online users is displayed and any user can cha…Full description

The project Online Billing System has been developed using Java, JSP and MySQL. There are two type of user exits in the system. First is customer and another is admin. They have seprate roles and a...

Complete project details with full project source code and database visit at: https://www.freeprojectz.com/paid-projects/php-mysql/online-news-portal-mini-project This project Online News …Full description

The main objective of the Online Wedding Planner is to manage the details of Wedding,Venue,Booking,Customer,Decoration. It manages all the information about Wedding, Party, Decoration, Wedding. The...

The main objective of the Online Wedding Planner is to manage the details of Wedding,Venue,Booking,Customer,Decoration. It manages all the information about Wedding, Party, Decoration, Wedding. The...

Today online examination system has become fast growing examination method because of its speed and accuracy. Online Examination System is the simplest to use web-based application for schools, col...

This project Online Blogging System has been developed on PHP and MySQL. Our website Freeprojectz.com provides many types of php online projects to be developed as the final year college project fo...

Today online examination system has become fast growing examination method because of its speed and accuracy. Online Examination System is the simplest to use web-based application for schools, col...

This project Courier Management System has been developed in PHP, MySQL. We have used covered mostly all of the functionality in the porject Courier Management System. There are 3 types or u…Full description

This project Courier Management System has been developed in PHP, MySQL. We have used covered mostly all of the functionality in the porject Courier Management System. There are 3 types or users ex...

This project Online Car Rental System has been developed in PHP and database is MySQL which runs over the Apache Server. In present scenario every one needs car for rental, so I developed this proj...Full description

Course material

This project Online Food Ordering System has been developed on PHP and MySQL. The main objective for developing this project was to sell food online order. This project Intends different types of f...

Full description

This project Online Food Ordering System has been developed on PHP and MySQL. The main objective for developing this project was to sell food online order. This project Intends different types of f...

This project Hospital Appointment System has been developed in PHP and MySQL database. The project Hospital Appointment System is to provides patients an easy way of booking a doctor’s appointment ...

This project Hospital Appointment System has been developed in PHP and MySQL database. The project Hospital Appointment System is to provides patients an easy way of booking a doctor’s appointment ...

This project Clinic Management System has been developed on PHP and MySQL Platform. Here students can get easily php projects free download with source code. Student can find all the easy simple ph...

Web Traffic Analyzer is a leading global provider of real-time web analytics solutions, delivered to customers through hosted, on demand services without costly investments in IT infrastructure. Ou...

This project User Management System has been developed on AngularJS, PHP and MySQL. It manages all the information about the user. There are two types of users available in the project, first one i...Full description

This project Gym Management System has been developed on PHP and MySQL. The main aim of the php mini projects with documentation is to develop web application in college submission. In these modern...

This project E-Learning Management System has been developed on PHP and MySQL. We are providing best php projects free download with source code for student purpose. We can develop simple php mysql...



Page - 136

Project Report of Online Wedding Planner Coding for Login.php


session_start();

include_once("../includes/db_connect.php");

if($_REQUEST[act]=="check_login")

{

check_login();

}

if($_REQUEST[act]=="logout")

{

logout();

}

####Function check user#######

function check_login()

{

Page - 137

Project Report of Online Wedding Planner $user_user=$_REQUEST[user_user];

$user_password=$_REQUEST[user_password];

$SQL="SELECT * FROM user WHERE user_username = '$user_user' AND user_password = '$user_password'";

$rs = mysql_query($SQL) or die(mysql_error());

if(mysql_num_rows($rs))

{

$_SESSION[login]=1;

$_SESSION['user_details'] = mysql_fetch_assoc($rs);

header("Location:../index.php");

}

else

{

header("Location:../login.php?msg=Invalid User and Password.");

}

}

Page - 138

Project Report of Online Wedding Planner ####Function logout####

function logout()

{

$_SESSION[login]=0;

$_SESSION['user_details'] = 0;

header("Location:../login.php?msg=Logout Successfullly.");

}

?>

Page - 139

Project Report of Online Wedding Planner Coding for Package.php


include_once("includes/header.php");

if($_REQUEST[package_id])

{

$SQL="SELECT * FROM package WHERE package_id = $_REQUEST[package_id]";

$rs=mysql_query($SQL) or die(mysql_error());

$data=mysql_fetch_assoc($rs);

}

global $SERVER_PATH;

?>









Page - 140

Project Report of Online Wedding Planner




Package Detail Form







  • Select Package Type












  • Title


  • Page - 141

    Project Report of Online Wedding Planner






  • Pricing Start From








  • Image








  • Description




  • Page - 142

    Project Report of Online Wedding Planner






  •  






















Page - 143

Project Report of Online Wedding Planner







Page - 144

Project Report of Online Wedding Planner Coding for Package-Report.php


include_once("includes/header.php");

include_once("includes/db_connect.php");

if($_REQUEST[search_text]!="")

{

$SQL="SELECT * FROM package WHERE package_name LIKE '%$_REQUEST[search_text]%' OR package_number LIKE '%$_REQUEST[search_text]%'";

}

else

{

$SQL="SELECT * FROM package";

}

$rs=mysql_query($SQL) or die(mysql_error());

global $SERVER_PATH;

?>

Page - 145

Project Report of Online Wedding Planner <script>

function delete_package(package_id)

{

if(confirm("Do you want to delete the package?"))

{

this.document.frm_package.package_id.value=package_id;

this.document.frm_package.act.value="delete_package";

this.document.frm_package.submit();

}

}













Page - 146

Project Report of Online Wedding Planner


Car Reports


























$sr_no=1;

while($data = mysql_fetch_assoc($rs))

Page - 147

Project Report of Online Wedding Planner {

?>



















Sr. No. Image Title Price Start Action
">Edit | )">Delete






Page - 148

Project Report of Online Wedding Planner











Page - 149

Project Report of Online Wedding Planner Coding for Quote.php


include_once("includes/header.php");

if($_REQUEST[quote_id])

{

$SQL="SELECT * FROM quote WHERE quote_id = $_REQUEST[quote_id]";

$rs=mysql_query($SQL) or die(mysql_error());

$data=mysql_fetch_assoc($rs);

}

?>











Page - 150

Project Report of Online Wedding Planner


Request for Quotations







  • Select Package












  • Name




  • Page - 151

    Project Report of Online Wedding Planner




  • Mobile








  • Email








  • Budget for Events








  • Number of Guests


  • Page - 152

    Project Report of Online Wedding Planner






  • Event Details










  • Description












    Page - 153

    Project Report of Online Wedding Planner
  •  






























Page - 154

Project Report of Online Wedding Planner Coding for Quote-Confirmation.php


include_once("includes/header.php");

if($_REQUEST[booking_id])

{

$SQL="SELECT * FROM car,company,booking WHERE car_company = company_id AND car_id = booking_car_id AND booking_id = $_REQUEST[booking_id]";

$rs=mysql_query($SQL) or die(mysql_error());

$data=mysql_fetch_assoc($rs);

}

$R = $_REQUEST;

?>









Page - 155

Project Report of Online Wedding Planner


We got your quotations. We will get back to you soon !!!!













Page - 156

Project Report of Online Wedding Planner Conclusion of the Project Online Wedding Planner: Our project is only a humble venture to satisfy the needs to manage their project work. Several user friendly coding have also adopted. This package shall prove to be a powerful package in satisfying all the requirements of the school. The objective of software planning is to provide a frame work that enables the manger to make reasonable estimates made within a limited time frame at the beginning of the software project and should be updated regularly as the project progresses. At the end it is concluded that we have made effort on following points… 

A description of the background and context of the project and its relation to work already done in the area.



Made statement of the aims and objectives of the project.



The description of Purpose, Scope, and applicability.



We define the problem on which we are working in the project.



We describe the requirement Specifications of the system and the actions that can be done on these things.



We understand the problem domain and produce a model of the system, which describes operations that can be performed on the system.



We included features and operations in detail, including screen layouts.



We designed user interface and security issues related to system.



Finally the system is implemented and tested according to test cases.

Page - 157

Project Report of Online Wedding Planner Future Scope of the Project: In a nutshell, it can be summarized that the future scope of the project circles around maintaining information regarding: 

We can add printer in future.



We can give more advance software for Online Wedding Planner including more facilities



We will host the platform on online servers to make it accessible worldwide



Integrate multiple load balancers to distribute the loads of the system



Create the master and slave database structure to reduce the overload of the database queries



Implement the backup mechanism for taking backup of codebase and database on regular basis on different servers

The above mentioned points are the enhancements which can be done to increase the applicability and usage of this project. Here we can

maintain the records of

Wedding and Latest Posts. Also, as it can be seen that now-a-days the players are versatile, i.e. so there is a scope for introducing a method to maintain the Online Wedding Planner. Enhancements can be done to maintain all the Wedding, Latest Posts, Event, Package, Blog.

We have left all the options open so that if there is any other future requirement in the system by the user for the enhancement of the system then it is possible to implement them.In the last we would like to thanks all the persons involved in the development of the system directly or indirectly. We hope that the project will serve its purpose for which it is develop there by underlining success of process.

Page - 158

Project Report of Online Wedding Planner Limitation of Project on Online Wedding Planner Although I have put my best efforts to make the software flexible, easy to operate but limitations cannot be ruled out even by me. Though the software presents a broad range of options to its users some intricate options could not be covered into it; partly because of logistic and partly due to lack of sophistication. Paucity of time was also major constraint, thus it was not possible to make the software foolproof and dynamic. Lack of time also compelled me to ignore some part such as storing old result of the candidate etc. Considerable efforts have made the software easy to operate even for the people not related to the field of computers but it is acknowledged that a layman may find it a bit problematic at the first instance. The user is provided help at each step for his convenience in working with the software. List of limitations which is available in the Online Wedding Planner: 

Excel export has not been developed for Wedding, Latest Posts due to some criticality.



The transactions are executed in off-line mode, hence on-line data for Event, Package capture and modification is not possible.



Off-line reports of Wedding, Blog, Event cannot be generated due to batch mode execution.

Page - 159

Project Report of Online Wedding Planner References and Bibliography: 

Google for problem solving



http://www.javaworld.com/javaworld/jw-01-1998/jw-01-Credentialreview.html



Database Programming with JDBC and Java by O'Reilly



Head First Java 2nd Edition



http://www.jdbc-tutorial.com/



Java and Software Design Concepts by Apress



https://www.tutorialspoint.com/java/



http://www.javatpoint.com/java-tutorial



https://docs.oracle.com/javase/tutorial/



http://www.wampserver.com/en/



http://www.JSP.net/



http://www.tutorialspoint.com/mysql/



httpd.apache.org/docs/2.0/misc/tutorials.html

Page - 160