Download as pdf or txt
Download as pdf or txt
You are on page 1of 20

A Maharashtra State Board of Technical Education, Mumbai

A
IN-PLANT TRAINING
REPORT

ON

“Web Development, PHP and SEO”

Submitted By:

Mr.Soham Shivaji Shirgire.

Submitted in the partial fulfilment of the requirement for the award of

Diploma in Computer Engineering

NEW SATARA COLLEGE OF ENGINEERING AND MGMT. (POLY), KORTI

Academic Year: 2023-2024


CERTIFICATE

This is to certify that the in-plant training in “Web Development, PHP

and SEO” has been completed successfully and the report of the same has

been submitted by Mr.Soham Shivaji Shirgire of T.Y (Computer Engg.) class

in the partial fulfillment of the curriculum laid by Maharashtra State Board

of Technical education, Mumbai during the academic year 2023-2024

MENTOR INDUSTRIAL T. P. O. PRINCIPAL SUPERVISOR


ACKNOWLEDGEMENT

It is with a great sense of gratitude that I acknowledge the support given to

me by number of individuals in the preparation of this report.

I thank to the Industrial Supervisor Mr.S.N.Potdukhe of the Tech star IT

Solution, Pune for their kind support and help which proved to be a source of

knowledge and addition to the learning of Engineering in a better way.

I would like to thank to Prof.A.B.Honkalas, Head Department of Computer

Engineering and the Training placement Officer Prof. V. N. Baad whose unending

efforts, advise, motivation and encouragement at every step made this work

possible.

I take this opportunity to also thank Principal Prof. V.H.Londhe, for being a

source of inspiration for us students.

Soham Shivaji Shirgire

(Class T.Y CO)


Declaration
We hereby declare that the project report entitled “Web Development,
PHP and SEO” is completed and submitted by me for the award of diploma
Computer engineering in NSCOEM, College, Korti, Pandarpur.

The partial fulfillment of the requirement for the award of the diploma of
Computer Engineering is a project work carried out by me under the guidance of
further declare that the work reported in this project has not submitted and will
not be submitted, either in part or full, for the award of diploma engineering in
computer engineering this institute or any other university or examination body.

PLACE- KORTI,
PANDARPUR DATE
ACKNOWLEDGEMENT

First I would like to thank Mohini Arkas, the President of


ProAzure Software Solutions Pvt. Ltd. Pune for giving me the
opportunity to do an internship within the organization.

I also would like all the people that worked along with me
ProAzure Software Solutions Pvt. Ltd. Pune with their patience and
openness they created an enjoyable working environment.

It is indeed with a great sense of pleasure and immense


sense of gratitude that I acknowledge the help of these individuals.

I am highly indebted to Principal Prof. V.V. NageswaraRao


for the facilities provided to accomplish this internship.

I would like to thank my Head of the Department


Dr.G.S.N.Murthy for his constructive criticism throughout my
internship.

I would like to thank Dr. B. Rajesh internship coordinator


Department of CSE for their support and advices to get and
complete internship in above said organization.

I am extremely great full to my department staff members and


friends who helped me in successful completion of this internship.
ABSTRACT

The Company:

ProAzure Software Solutions Pvt. Ltd. skilled Software development


and Service Company established in Wagholi (Pune). The Prime IT
services required have dedicated to explore a society with technical
Innovations. We principally consider distinctive IT services together
with custom website design and development services and Features.
We principally consider distinctive IT services together with custom
website design and development services. ProAzure Software
Solutions Pvt. Ltd. Pune has impressive services with societal fields
and Educational fields Software Development, Web Designing, Web
Development, Digital Marketing, Android Development and All
services.

Programmers and opportunities:

The Institute combines pioneering research with top class education.


An innovative curriculum allows the student flexibility in selecting
courses and projects. Students, even at the undergraduate level, get to
participate in on-going research and technology development - an
opportunity unprecedented in India. As a result, a vibrant
undergraduate programmer co- exists with a strong postgraduate
programmer.
Methodology:

This project is to provide classifieds information. The website


will provide different kinds of facilities to the user like rentals; travels.
The user should register to utilize the site. Each user will be given
UserId and password. Using that Id and password user can enter in to
the site and can put the ads. Those who want to view the information
they can without registration. This project is implemented using html
as the front-end and MySQL as back-end.

Key parts of the report:

In existed system, users have to go that particular car and user should
reserve it. Here, time consuming is more and there is no guarantee that
car will come after waiting for long time. We will not able know the
fair details of the distance of our journey
INDEX

Sr.No Content Page No

1. Introduction 1

2. Project Design 2

3. Project code and result 3

4 Output 6

5. Conclusion 8

6. Reference 12
INTRODUCTION

Learning Objectives/Internship Objectives

 Internships are generally thought of to be reserved for college students


looking to gain experience in a particular field. However, a wide array
of people can benefit from Training Internships in order to receive real
world experience and develop their skills.
 An objective for this position should emphasize the skills you already
possess in the area and your interest in learning more
 Internships are utilized in a number of different career fields, including
architecture, engineering, healthcare, economics, advertising and many
more.
 Some internship is used to allow individuals to perform scientific
research while others are specifically designed to allow people to gain
first-hand experience working.
 Utilizing internships is a great way to build your resume and develop
skills that can be emphasized in your resume for future jobs. When you
are applying for a Training Internship, make sure to highlight any
special skills or talents that can make you stand apart from the rest of
the applicants so that you have an improved chance of landing the
position.
Project Design

 Planning
In this phase, you need to Identify processes which you want to
automate. Following checklist will help you identify the correct
process
Setup project team, finalize implementation timelines and approach.
Agree on solution design for performing Robotic Process Automation
processes.
Identify logging mechanism that should be implemented to find
issues with running bots.
Clear roadmap should be defined to scale up RPA implementation
 Development
In this phase, you start developing the automation workflows as per
agreed plan. Being wizard driven, the implementation is quick
 Testing
In this phase, you run RPA Testing cycles for in-scope automation to
identify and correct defects
 Support & Maintenance
Provide continuous support after going live and helps in immediate
defect resolution. Follow general maintenance guidelines with roles
and responsibilities with business and IT support teams.
2. PROJECT CODE AND RESULT OUTPUT

Frontend
Login

<DOCTYPE html>
<html>
<head>
<title> Login Page </title>
<link rel="stylesheet" href="css/style.css">

<Body style= "background-color: #808080">


<div id="main-wrapper">
<center>
<h2> Registration Form </h2>
<img src="images/login.png" class="avatar"/>
</center>

<form class="myform" action="validation.php" method="post">


<label> <b>Username:</b></label><br>
<input name="username" type="text" class="inputvalues" placeholder="Type your name"
required/><br>
<label> <b>Password:</b></label><br>
<input name="password" type="password" class="inputvalues" placeholder="Your Password"
required/><br>

<input type="Submit" id="login_btn" value="Sign In"/> <br>


<button align="center" id="register_btn"onclick="window.location.href='register.php'">
Register</button>
</form>
</div>
</Body>
</head>
</html>
Register

<DOCTYPE html>
<html>
<head>
<title> Register Page </title>
<link rel="stylesheet" href="css/style.css">

<Body style= "background-#1c87c9">


<div id="main-wrapper">
<center>
<h2> Registration Form </h2>
<img src="images/login.png" class="avatar"/>
</center>

<form class="myform" action="registration.php" method="post">


<label> <b>Full name:</b></label><br>
<input name="fullname" type="text" class="inputvalues" placeholder="Type your Full name"
required/><br>
<label> <b>Gender:</b></label><br>
<input name="gender" type="radio" class="radiobtns" value="male" required> Male
<input name="gender" type="radio" class="radiobtns" value="female" checked required>
Female <br>
<label> <b>Qualification:</b></label>
<select class='Qualification' name="qualification">
<option value="BE">BE</option>
<option value="B.Tech">B.Tech</option>
<option value="BCA">BCA</option>
<option value="BCS">BCS</option>
<option value="MCA">MCA</option>
<option value="MCS">MCS</option>
<option value="Diploma">Diploma</option>
</select><br>
<label> <b>Username:</b></label><br>
<input name="username" type="text" class="inputvalues" placeholder="Type your name"
required/><br>
<label> <b>Password:</b></label><br>
<input name="password" type="password" class="inputvalues" placeholder="Enter your
Password" required/><br>
<input type="Submit" id="signup_btn" value="Sign Up"/> <br>

<button align="center" id="back_btn"onclick="window.location.href='index.php'">


Back</button>
</form>

</div>
</Body>
</head>
</html>
Home

<?php

session_start();
if(!isset($_SESSION['username']))
{
header('location:login.php');
}
?>

<!DOCTYPE html>
<html>
<head>
<title> Welcome To Student System</title>

<link rel="stylesheet" href="css/style.css">


<center>

<Body style="background-color: #FF00FF">


<img src="images/login.png" class="avatar"/>
<div class="container">

<h2 class="text-center text-success"> Welcome <?php echo $_SESSION['username'];?></h2>


<a href="student.php"> Student Registration</a>
<a href="logout.php"> LOGOUT </a>
</center>
</div>
</Body>
</head>
</html>
PHP Code:
Registration

<script type="text/javascript">
alert('Registration done successfully');
</script>
<?php
session_start();
header('location:index.php');
$con = mysqli_connect('localhost','root');
if($con){
echo "Connection Successful";

}else
{
echo "no Connection";
}
mysqli_select_db($con,'firstproject');
$fullname=$_POST['fullname'];
$gender=$_POST['gender'];
$qualification=$_POST['qualification'];
$name=$_POST['username'];
$pass=$_POST['password'];
$q= "select * from user where username='$name',fullname='$fullname',gender='$gender',
qualification='$qualification',password='$pass'";
$res=mysqli_query($con,$q);
$num = mysqli_num_rows($res);

if($num>0)
{
echo "Duplicate data";
}else{

$qy= " insert into user(username,fullname,gender,qualification,password) values


('$name','$fullname','$gender','$qualification','$pass')";
mysqli_query($con,$qy);

}
?>
Validation

<?php
session_start();
header('location:index.php');
$con = mysqli_connect('localhost','root');
if($con){
echo "Connection Successful";

}else
{
echo "no Connection";
}
mysqli_select_db($con,'firstproject');
$name=$_POST['username'];
$pass=$_POST['password'];
$q= "select * from user where username='$name'&& password='$pass'";
$res=mysqli_query($con,$q);
$num = mysqli_num_rows($res);

if($num==1)
{
$_SESSION['username']=$name;
header('location:home.php');

}else{

header('location:index.php');
}

Logout
CONCLUSION

Once the on-boarding and training phase wraps up, the new staff member
should be ready to engage in a rewarding long-lasting career. The full cycle
recruiting process can indeed be a gruelling experience for all parties
involved. But, will the addition of a new, reliable employee for the firm, it is
also a much needed and appreciated part of nurturing a successful business.

Even for owners of small enterprises, for peace of mind in hiring the best
candidate for a job, following the steps of the recruitment life cycle is well
worth the time and effort and is a proven method of reducing turnovers within
a company, saving both time and money in the long run.
References

 Dave W. Mercer, Allan Kent, Steven Nowicki, David Mercer,


―Beginning PHP5‖, 3rd edition, Wrox publications.
th
 Vikram Vaswani, ―MySQL(TM): The Complete Reference‖, 6
edition, Mc Graw Hill Education publications.
th
 Luke Welling, ―PHP and MySQL Web Development Book‖, 5
edition, Pearson India publications.
th
 Larry Ullman, ―PHP and MySQL for Dynamic Web Sites‖, 4
edition, Pearson India publications.

You might also like