UrbanPro
true
Jigar Shah PHP trainer in Ahmedabad/>

Jigar Shah

Trainer

Gandhi Road, Ahmedabad, India - 380001.

1 Student

Referral Discount: Get ₹ 500 off when you make a payment to start classes. Get started by Booking a Demo.

Details verified of Jigar Shah

Identity

Education

Know how UrbanPro verifies Tutor details

Identity is verified based on matching the details uploaded by the Tutor with government databases.

Overview

I have 19 years of IT Experience(12 years Software Development and 4 years Teaching). In the development, I have developed software,corporate websites and e-commerce website for courier, healthcare, pharma, architecture,Multi Level Marketing, etc. I Teach my students with development prospects.

Core subjects are : C , C++ , Core PHP, Web Design, Web development,Java, SQL, etc. -

Languages Spoken

Hindi

Gujarati

English

Education

IIM Calcutta 2014

Software Project Management

Axelos 2016

ITIL V3 Expert

Address

Gandhi Road, Ahmedabad, India - 380001

Verified Info

Phone Verified

Email Verified

Report this Profile

Is this listing inaccurate or duplicate? Any other problem?

Please tell us about the problem and we will fix it.

Please describe the problem that you see in this page.

Type the letters as shown below *

Please enter the letters as show below

Teaches

PHP Classes
4 Students

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in PHP Classes

10

Teaches

PHP Web 2.0, PHP Realtime Project, Php MySQL

C++ Language Classes
4 Students

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in C++ Language Classes

15

Proficiency level taught

Basic C++

C Language Classes
4 Students

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in C Language Classes

15

Web Development Classes
4 Students

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Web Development Classes

13

Web Designing Classes
4 Students

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Web Designing Classes

13

Teaches web designing at proficiency level

Advanced Web Designing

Java Training Classes
4 Students

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Teaches

Core Java

Courses

Documents (6)

C Language

PHP

C++

Java

web designing

MSSQL

Reviews

No Reviews yet!

FAQs

1. Which classes do you teach?

I teach C Language, C++ Language, Java Training, PHP, Project Management, Web Designing and Web Development Classes.

2. Do you provide a demo class?

Yes, I provide a free demo class.

3. How many years of experience do you have?

I have been teaching for 10 years.

Answers by Jigar Shah (40)

Answered on 20/01/2017 Learn IT Courses/Java

OOPS Concepts. 2 months Rs.7000.
Answers 73 Comments
Dislike Bookmark

Answered on 17/12/2015 Learn IT Courses/Java

Encrypting the session value will have zero effect. The session cookie is already an arbitrary value, encrypting it will just generate another arbitrary value that can be sniffed. The only real solution is HTTPS. If you don't want to do SSL on your whole site (maybe you have performance concerns),... ...more
Encrypting the session value will have zero effect. The session cookie is already an arbitrary value, encrypting it will just generate another arbitrary value that can be sniffed. The only real solution is HTTPS. If you don't want to do SSL on your whole site (maybe you have performance concerns), you might be able to get away with only SSL protecting the sensitive areas. To do that, first make sure your login page is HTTPS. When a user logs in, set a secure cookie (meaning the browser will only transmit it over an SSL link) in addition to the regular session cookie. Then, when a user visits one of your "sensitive" areas, redirect them to HTTPS, and check for the presence of that secure cookie. A real user will have it, a session hijacker will not.
Answers 10 Comments
Dislike Bookmark

Answered on 17/12/2015 Learn IT Courses/Web Development

.bind() attacheds events to elements that exist or match the selector at the time the call is made. Any elements created afterwards or that match going forward because the class was changed, will not fire the bound event. .live() works for existing and future matching elements. Before jQuery 1.4 this... ...more
.bind() attacheds events to elements that exist or match the selector at the time the call is made. Any elements created afterwards or that match going forward because the class was changed, will not fire the bound event. .live() works for existing and future matching elements. Before jQuery 1.4 this was limited to the following events: click, dblclick mousedown, mouseup, mousemove, mouseover, mouseout, keydown, keypress, keyup
Answers 8 Comments
Dislike Bookmark

Answered on 17/12/2015 Learn IT Courses/Java

You already can use some bootstrap CSS classes and helpers but if you want give style to each UI control, you will need to set the primefaces theme to none.
Answers 9 Comments
Dislike Bookmark

Answered on 17/12/2015 Learn IT Courses/Java

You already can use some bootstrap CSS classes and helpers but if you want give style to each UI control, you will need to set the primefaces theme to none.
Answers 11 Comments
Dislike Bookmark

Teaches

PHP Classes
4 Students

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in PHP Classes

10

Teaches

PHP Web 2.0, PHP Realtime Project, Php MySQL

C++ Language Classes
4 Students

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in C++ Language Classes

15

Proficiency level taught

Basic C++

C Language Classes
4 Students

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in C Language Classes

15

Web Development Classes
4 Students

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Web Development Classes

13

Web Designing Classes
4 Students

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Web Designing Classes

13

Teaches web designing at proficiency level

Advanced Web Designing

Java Training Classes
4 Students

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Teaches

Core Java

Courses

No Reviews yet!

Answers by Jigar Shah (40)

Answered on 20/01/2017 Learn IT Courses/Java

OOPS Concepts. 2 months Rs.7000.
Answers 73 Comments
Dislike Bookmark

Answered on 17/12/2015 Learn IT Courses/Java

Encrypting the session value will have zero effect. The session cookie is already an arbitrary value, encrypting it will just generate another arbitrary value that can be sniffed. The only real solution is HTTPS. If you don't want to do SSL on your whole site (maybe you have performance concerns),... ...more
Encrypting the session value will have zero effect. The session cookie is already an arbitrary value, encrypting it will just generate another arbitrary value that can be sniffed. The only real solution is HTTPS. If you don't want to do SSL on your whole site (maybe you have performance concerns), you might be able to get away with only SSL protecting the sensitive areas. To do that, first make sure your login page is HTTPS. When a user logs in, set a secure cookie (meaning the browser will only transmit it over an SSL link) in addition to the regular session cookie. Then, when a user visits one of your "sensitive" areas, redirect them to HTTPS, and check for the presence of that secure cookie. A real user will have it, a session hijacker will not.
Answers 10 Comments
Dislike Bookmark

Answered on 17/12/2015 Learn IT Courses/Web Development

.bind() attacheds events to elements that exist or match the selector at the time the call is made. Any elements created afterwards or that match going forward because the class was changed, will not fire the bound event. .live() works for existing and future matching elements. Before jQuery 1.4 this... ...more
.bind() attacheds events to elements that exist or match the selector at the time the call is made. Any elements created afterwards or that match going forward because the class was changed, will not fire the bound event. .live() works for existing and future matching elements. Before jQuery 1.4 this was limited to the following events: click, dblclick mousedown, mouseup, mousemove, mouseover, mouseout, keydown, keypress, keyup
Answers 8 Comments
Dislike Bookmark

Answered on 17/12/2015 Learn IT Courses/Java

You already can use some bootstrap CSS classes and helpers but if you want give style to each UI control, you will need to set the primefaces theme to none.
Answers 9 Comments
Dislike Bookmark

Answered on 17/12/2015 Learn IT Courses/Java

You already can use some bootstrap CSS classes and helpers but if you want give style to each UI control, you will need to set the primefaces theme to none.
Answers 11 Comments
Dislike Bookmark

Contact

Load More

Jigar Shah describes himself as Trainer. He conducts classes in C Language, C++ Language and Java Training. Jigar is located in Gandhi Road, Ahmedabad. Jigar takes at students Home, Regular Classes- at his Home and Online Classes- via online medium. He has 15 years of teaching experience . Jigar has completed Software Project Management from IIM Calcutta in 2014 and ITIL V3 Expert from Axelos in 2016. HeĀ is well versed in Hindi, Gujarati and English.

X

Reply to 's review

Enter your reply*

1500/1500

Please enter your reply

Your reply should contain a minimum of 10 characters

Your reply has been successfully submitted.

Certified

The Certified badge indicates that the Tutor has received good amount of positive feedback from Students.

Different batches available for this Course

This website uses cookies

We use cookies to improve user experience. Choose what cookies you allow us to use. You can read more about our Cookie Policy in our Privacy Policy

Accept All
Decline All

UrbanPro.com is India's largest network of most trusted tutors and institutes. Over 55 lakh students rely on UrbanPro.com, to fulfill their learning requirements across 1,000+ categories. Using UrbanPro.com, parents, and students can compare multiple Tutors and Institutes and choose the one that best suits their requirements. More than 7.5 lakh verified Tutors and Institutes are helping millions of students every day and growing their tutoring business on UrbanPro.com. Whether you are looking for a tutor to learn mathematics, a German language trainer to brush up your German language skills or an institute to upgrade your IT skills, we have got the best selection of Tutors and Training Institutes for you. Read more