SlideShare a Scribd company logo
Specially For Summer Interns

       Effective from: Jan 2012




1    COURSE OUTLINE FOR      |   XPERT INFOTECH | Confidential
    PHP and MYSQL with CMS
CORE PHP

    How PHP Works                            Reading from Two-dimensional
    The php.ini File                         Arrays
    Basic PHP Syntax                         Looping through Two-dimensional
    PHP Tags                                 Arrays
    PHP Statements and Whitespace            Array Manipulation Functions
    Comments                                 PHP and HTML Forms
    PHP Functions                            HTML Forms
    Variables                                How HTML Forms Work
    Variable Types                           A Sample HTML Form
    Variable Names (Identifiers)             Form Variables
    Type Strength                            String Manipulation
    Variable Scope                           Formatting Strings
    Constants                                Concatenation
    Variable-Testing and Manipulation        String Manipulation Functions
    Functions                                Examples of String Functions
    PHP Operators                            Magic Quotes
    Creating Dynamic Pages                   magic_quotes_gpc
    Single Quotes vs. Double Quotes          magic_quotes_runtime
    Flow Control                            Recommendation on Magic Quotes
     Conditional Processing                  Reusing Code and Writing
     If Conditions                           Functions
     Loops                                   Including Files
     while                                   Require
     do...while                              require_once
     for                                     auto_prepend_file and
      break and continue                     auto_append_file
     Arrays                                  User Functions
     Enumerated Arrays                       Defining and Calling Functions
     Initializing Arrays                     Default Values
     Appending to an Array                   Variable Scope
     Reading from Arrays                      By Reference vs. By Value
     Looping through Arrays                   Form Processing
     Associative Arrays                       Code Organization
     Initializing Associative Arrays         Simple SELECTs
     Reading from Associative Arrays          Introduction to the Northwind
     Looping through Associative             Database
     Arrays                                   Some Basics
     Two-dimensional Arrays                   Comments
                                              Whitespace and Semi-colons




2        COURSE OUTLINE FOR             |   XPERT INFOTECH | Confidential
        PHP and MYSQL with CMS
Case Sensitivity                            The NOT Operator
    Selecting All Columns in All                Checking Multiple Conditions
    Rows                                      AND
    Selecting Specific Columns                  OR
    Sorting Records                             Order of Evaluation
    Sorting By a Single Column                Sub queries, Joins and Unions
    Sorting By Multiple Columns                 Sub queries
    Sorting By Column Position                  Joins
    Ascending and Descending Sorts              Table Aliases
    The WHERE Clause and Operator               Multi-table Joins
    Symbols                                     Outer Joins
    Checking for Equality                       Unions
    Checking for Inequality                     UNION ALL
    Checking for Greater or Less Than          UNION Rules
    Checking for NULL                          Inserting, Updating and Deleting
    WHERE and ORDER BY                         Records
    The WHERE Clause and Operator              INSERT
    Words                                       UPDATE
    The BETWEEN Operator                        DELETE
    The IN Operator                            Managing Data
    The LIKE Operator                           Querying a Database


                                     MySql

    MySql Methods and Properties              fopen()
    Inserting and Updating Records            Reading from a File
     MySql Prepared Statements                fgets()
    Authentication with PHP and               Writing to a File
    MYSQL                                     fwrite()
     A Database-less Login Form               File Locking
    Session Control and Cookies               flock()
    Sessions                                  Uploading Files via an HTML
    Configuring Sessions                      Form
    Session Functions                         Getting File Information
     Cookies                                  More File Functions
    Sending Email with PHP                   Directory Functions
     mail()                                   Getting a Directory Listing
     Shortcomings of mail()                   Getting a Directory Listing
     PHPMailer                                Creating a Dreamweaver site
     File System Management                   Site creation - basic
     Opening a File                           Site creation - advanced




3        COURSE OUTLINE FOR             |    XPERT INFOTECH | Confidential
        PHP and MYSQL with CMS
Database connections                               Creating a master-detail view
         Database basics                             Advanced record sets and multi-
         Introduction to MYSQL                        table queries
     Server behaviors                                   Method 1 - Simple record set with
     Querying the database                           filter
      Building a MYSQL query using                      Method 2 - Advanced record set
      the Simple view                                   Method 3 - Advanced record set
      Building a MYSQL query using                    and multi-table Queries
      the Advanced view                               Dynamically populating forms
      Adding fields from the resulting                  Populating text fields, text areas,
      records to your page                             and hidden fields
      Displaying and formatting query                   Populating selection lists, radio
      results                                          button lists, and checkboxes
      Using Repeat Region to display                   Building record insertion forms
      multiple records                                  Building the insertion form by
      Formatting results                               hand
      Paging through records                           Allowing Dreamweaver to
         Schemes for record set navigation             generate the record insertion form
         Paging to first, last, previous, and          automatically
       next records                                     Creating a page that confirms the
       Show region if...                               record insertion
         Selectively displaying information             Validating form entries using
       based on a conditional                          JavaScript behaviors
       Disabling the first and previous                Understanding stored procedures
       record links if the first page of                How they are created in the
       results is                                      database
       displayed                                        Advantages/disadvantages of
         Disabling the last and next record            stored procedures versus MYSQL
       links if the last page of results is             Calling a stored procedure without
       displayed                                       passing parameters
       Displaying the count of the number               Passing input parameters to a
       of records returned                             stored procedure
       Creating master-detail views                   Manually constructing a form that
         Overview of the importance of                 allows the user to update a record
        master-detail views and how they               Retrieving parameters from a
        convey                                         stored procedure
        information                                    Updating records




4         COURSE OUTLINE FOR                    |   XPERT INFOTECH | Confidential
         PHP and MYSQL with CMS
USE OF DREAMWEAVER
        Using Dreamweaver to automatically generate a form for updating the record
       Validating the edited information using JavaScript behaviors
       Building a confirmation page to display the result of updating the record
    Deleting records
       Precautions to take to ensure that records are not inadvertently deleted
       Building an appropriate record deletion interface, complete with confirmation
     dialog
     Implementing user login/logout with Dreamweaver
       Overview of Web application security issues
       Preferred approach: configuring the Web server to manage security
       Alternative approach: having Dreamweaver automatically generate code for
     logging users in, authenticating them, and logging them out
       In-depth instruction on using Dreamweaver with PHP to implement user
     login/logout and page-by-page authentication.

                                       AJAX
    Ajax with PHP
    Ajax Overview
    Ajax Technology Stack
    Ajax Implementations
    Installing and configuring HTML_Ajax Pear Module
    Ajax Server
    Ajax Client

                                 WordPress
    Wordpress Overview, installation + Configuration
    Wordpress Administration
    Wordpress Theme Development
    Wordpress Plugin Development
    Hooks, Filters, Action, Plugin development etc.
    Wordpress Plugin Development
    Wordpress core functions, how to use, customize etc.,

                                     Jquery
    What Are Javascript And Jquery
    Document Object Model (DOM) And Jquery
    Programming/Coding Principles




5         COURSE OUTLINE FOR                 |       XPERT INFOTECH | Confidential
         PHP and MYSQL with CMS
Separation Of Structure (HTML), Style (CSS) And
     Behaviors (Javscript/Jquery)
     Jquery Wrapper – DOM Elements As Array - $( )
     Selecting And Manipulating Elements
     Jquery API
     Element Properties And Attributes
     Browser Event Model
     Jquery Event Model
     Putting Events To Work
     Animation And Effects Overview
     Show/Hide Elements
     Animate The Display State
     Animation And Queuing
     More On Jquery Utilities
     Extending Jquery, Plugins
     Dynamic Website Design With Jquery
     Design And (3) Plans For Implementing Jquery Functionality
     Drag And Drop Features
     Sorting Elements
     Changing The Size Of Elements
     Making Elements Selectable
     Buttons And Buttonsets
     Sliders, Tabs, Accordians
     Progress Bars
     Forms/Auto Completers
     Date Pickers
     Dialog Boxes

Notes:
     Recommend Practical hours for student except class hours is 90 Hrs.
     We also provide weekend classes for all courses.
     After completion of 75% of course, student will go through Live Project
     Training, Interview Preparation and Recruitment process in Software
     Industry.
     Student will go through the training of HTML, CSS and JavaScript as a
     complimentary package before starting of PHP++.This is optional.




 6        COURSE OUTLINE FOR              |       XPERT INFOTECH | Confidential
         PHP and MYSQL with CMS
Our Technology Specialization and Certification Courses:




7    COURSE OUTLINE FOR      |   XPERT INFOTECH | Confidential
    PHP and MYSQL with CMS
KEY FEATURES OF XPERT INFOTECH:
        KEY FEATURES OF XPERT INFOTECH:

    Training by Certified and Experienced Trainers.

    Industrial and Corporate Tie-ups for Live projects for student.

    Well equipped Computer Lab, Internet and Book Bank facility.

    Live project based Summer Trainings, Summer Internships and

    summer programs.

    100% placement assistance on every course.

    Interview Preparation and Technical Events.

    On Campus Interviews in every month for the placement of students.

    WI-FI enabled classrooms.              100% Placement
                                              Assistance



                                                            On Campus
                                                            Interviews




          58-61 (Basement), Vashist Park, Pankha Road,
                         New Delhi-46
            Ph.: 011-28526572, 65833100, 9990345891
                     www.xpert-infotech.com
                       Email: info@xpert-infotech.com




8        COURSE OUTLINE FOR          |      XPERT INFOTECH | Confidential
        PHP and MYSQL with CMS

More Related Content

PDF
Presenter manual RIA technology (specially for summer interns)
PDF
IBM Solutions '99 XML and Java: Lessons Learned
PPTX
CORE JAVA & ADVANCE JAVA
PPTX
PROGRAMMING COURSE DATA STRUCTURES
PDF
PDF
Hibernate 3
PDF
Single API for library services (poster)
PPT
Universal Java Beans with DB2 from 1999, early Internet work
Presenter manual RIA technology (specially for summer interns)
IBM Solutions '99 XML and Java: Lessons Learned
CORE JAVA & ADVANCE JAVA
PROGRAMMING COURSE DATA STRUCTURES
Hibernate 3
Single API for library services (poster)
Universal Java Beans with DB2 from 1999, early Internet work

What's hot (18)

PDF
PDF
Boston 2011 OTN Developer Days - Java EE 6
PDF
Java Web Programming [4/9] : JSP Basic
PPTX
Hibernate tutorial
ODP
Java EE and Glassfish
ODP
Hibernate Developer Reference
PPT
Summer training java
PDF
Model-Driven Software Development - Strategies for Design & Implementation of...
PPSX
Elements of Java Language
PPT
Struts N E W
PDF
Java Training in Chennai | Advanced Java Training in chennai | J2EE Training ...
PDF
10 jdbc
PDF
Java Web Programming [3/9] : Servlet Advanced
PDF
Dot net training bangalore
PPTX
Dao example
PDF
JDBC : Java Database Connectivity
PDF
Business Objects....is it LOV?
PDF
Java Web Programming [6/9] : MVC
Boston 2011 OTN Developer Days - Java EE 6
Java Web Programming [4/9] : JSP Basic
Hibernate tutorial
Java EE and Glassfish
Hibernate Developer Reference
Summer training java
Model-Driven Software Development - Strategies for Design & Implementation of...
Elements of Java Language
Struts N E W
Java Training in Chennai | Advanced Java Training in chennai | J2EE Training ...
10 jdbc
Java Web Programming [3/9] : Servlet Advanced
Dot net training bangalore
Dao example
JDBC : Java Database Connectivity
Business Objects....is it LOV?
Java Web Programming [6/9] : MVC
Ad

Viewers also liked (8)

PPT
Tech talk php_cms
PDF
A content repository for your PHP application or CMS?
PDF
What is cms_in_php
DOCX
CONTENT MANAGEMENT SYSTEM nw
PPTX
The 2013 Content Management System Report Card-Idealware
PPTX
Content Management Systems compared
DOCX
6 Week / Month Industrial Training in Hoshiarpur Punjab- PHP Project Report
DOCX
Industrial training report
Tech talk php_cms
A content repository for your PHP application or CMS?
What is cms_in_php
CONTENT MANAGEMENT SYSTEM nw
The 2013 Content Management System Report Card-Idealware
Content Management Systems compared
6 Week / Month Industrial Training in Hoshiarpur Punjab- PHP Project Report
Industrial training report
Ad

Similar to Presenter manual php and mysql with cms (specially for summer interns) (20)

PDF
Php training centre in adyar
PDF
Java Online Training
PDF
Php training centre in Adyar
PDF
PHP Course in pune , PHP Training in Pimpri chinchwad ,PHP training in Pune
PPTX
Cegonsoft-Php training institute Bangalore
PDF
Php course-syllabus
PDF
Spring_Course_Content
PPT
ORACLE 9i
PDF
PHP | ZENUS INFOTECH INDIA PVT. LTD.
DOCX
Framework 4
PPTX
Cegonsoft PHP training institute in bangalore
PPTX
Cegonsoft PHP training institute in Bnaglaore
PPTX
Php mysql 2
PDF
P mysql training in bangalore
PDF
PHP & mySQL Training in Bangalore at myTectra
DOCX
Java se 8 fundamentals
PDF
Live Project Training in PHP at Delhi, Janakpuri
PDF
java classes in pune
DOCX
Complete java syllabus 7448062045 Yesdo Sddd
PDF
Ibm data stage implementing etl solution using ibm datastage
Php training centre in adyar
Java Online Training
Php training centre in Adyar
PHP Course in pune , PHP Training in Pimpri chinchwad ,PHP training in Pune
Cegonsoft-Php training institute Bangalore
Php course-syllabus
Spring_Course_Content
ORACLE 9i
PHP | ZENUS INFOTECH INDIA PVT. LTD.
Framework 4
Cegonsoft PHP training institute in bangalore
Cegonsoft PHP training institute in Bnaglaore
Php mysql 2
P mysql training in bangalore
PHP & mySQL Training in Bangalore at myTectra
Java se 8 fundamentals
Live Project Training in PHP at Delhi, Janakpuri
java classes in pune
Complete java syllabus 7448062045 Yesdo Sddd
Ibm data stage implementing etl solution using ibm datastage

More from XPERT INFOTECH (10)

PDF
Presenter manual web designing (specially for summer interns)
PDF
Presenter manual SEO and internet marketing (specially for summer interns)
PDF
Presenter manual oracle D2K (specially for summer interns)
PDF
Presenter manual oracle dba (specially for summer interns)
PDF
Presenter manual core java (specially for summer interns)
PDF
Presenter manual J2EE (specially for summer interns)
PDF
Presenter manual embedded systems (specially for summer interns)
PDF
Presenter manual cloud computing (specially for summer interns)
PDF
Presenter manual android development (specially for summer interns)
PDF
I phone ipad-course-content
Presenter manual web designing (specially for summer interns)
Presenter manual SEO and internet marketing (specially for summer interns)
Presenter manual oracle D2K (specially for summer interns)
Presenter manual oracle dba (specially for summer interns)
Presenter manual core java (specially for summer interns)
Presenter manual J2EE (specially for summer interns)
Presenter manual embedded systems (specially for summer interns)
Presenter manual cloud computing (specially for summer interns)
Presenter manual android development (specially for summer interns)
I phone ipad-course-content

Recently uploaded (20)

PDF
Anesthesia in Laparoscopic Surgery in India
PDF
Saundersa Comprehensive Review for the NCLEX-RN Examination.pdf
PPTX
202450812 BayCHI UCSC-SV 20250812 v17.pptx
PDF
Classroom Observation Tools for Teachers
PDF
ANTIBIOTICS.pptx.pdf………………… xxxxxxxxxxxxx
PDF
102 student loan defaulters named and shamed – Is someone you know on the list?
PDF
01-Introduction-to-Information-Management.pdf
PDF
RMMM.pdf make it easy to upload and study
PPTX
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
PDF
Abdominal Access Techniques with Prof. Dr. R K Mishra
PPTX
Pharma ospi slides which help in ospi learning
PPTX
Institutional Correction lecture only . . .
PPTX
Lesson notes of climatology university.
PDF
Complications of Minimal Access Surgery at WLH
PPTX
GDM (1) (1).pptx small presentation for students
PDF
STATICS OF THE RIGID BODIES Hibbelers.pdf
PPTX
Final Presentation General Medicine 03-08-2024.pptx
PPTX
Cell Types and Its function , kingdom of life
PPTX
Pharmacology of Heart Failure /Pharmacotherapy of CHF
PDF
Microbial disease of the cardiovascular and lymphatic systems
Anesthesia in Laparoscopic Surgery in India
Saundersa Comprehensive Review for the NCLEX-RN Examination.pdf
202450812 BayCHI UCSC-SV 20250812 v17.pptx
Classroom Observation Tools for Teachers
ANTIBIOTICS.pptx.pdf………………… xxxxxxxxxxxxx
102 student loan defaulters named and shamed – Is someone you know on the list?
01-Introduction-to-Information-Management.pdf
RMMM.pdf make it easy to upload and study
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
Abdominal Access Techniques with Prof. Dr. R K Mishra
Pharma ospi slides which help in ospi learning
Institutional Correction lecture only . . .
Lesson notes of climatology university.
Complications of Minimal Access Surgery at WLH
GDM (1) (1).pptx small presentation for students
STATICS OF THE RIGID BODIES Hibbelers.pdf
Final Presentation General Medicine 03-08-2024.pptx
Cell Types and Its function , kingdom of life
Pharmacology of Heart Failure /Pharmacotherapy of CHF
Microbial disease of the cardiovascular and lymphatic systems

Presenter manual php and mysql with cms (specially for summer interns)

  • 1. Specially For Summer Interns Effective from: Jan 2012 1 COURSE OUTLINE FOR | XPERT INFOTECH | Confidential PHP and MYSQL with CMS
  • 2. CORE PHP How PHP Works Reading from Two-dimensional The php.ini File Arrays Basic PHP Syntax Looping through Two-dimensional PHP Tags Arrays PHP Statements and Whitespace Array Manipulation Functions Comments PHP and HTML Forms PHP Functions HTML Forms Variables How HTML Forms Work Variable Types A Sample HTML Form Variable Names (Identifiers) Form Variables Type Strength String Manipulation Variable Scope Formatting Strings Constants Concatenation Variable-Testing and Manipulation String Manipulation Functions Functions Examples of String Functions PHP Operators Magic Quotes Creating Dynamic Pages magic_quotes_gpc Single Quotes vs. Double Quotes magic_quotes_runtime Flow Control Recommendation on Magic Quotes Conditional Processing Reusing Code and Writing If Conditions Functions Loops Including Files while Require do...while require_once for auto_prepend_file and break and continue auto_append_file Arrays User Functions Enumerated Arrays Defining and Calling Functions Initializing Arrays Default Values Appending to an Array Variable Scope Reading from Arrays By Reference vs. By Value Looping through Arrays Form Processing Associative Arrays Code Organization Initializing Associative Arrays Simple SELECTs Reading from Associative Arrays Introduction to the Northwind Looping through Associative Database Arrays Some Basics Two-dimensional Arrays Comments Whitespace and Semi-colons 2 COURSE OUTLINE FOR | XPERT INFOTECH | Confidential PHP and MYSQL with CMS
  • 3. Case Sensitivity The NOT Operator Selecting All Columns in All Checking Multiple Conditions Rows AND Selecting Specific Columns OR Sorting Records Order of Evaluation Sorting By a Single Column Sub queries, Joins and Unions Sorting By Multiple Columns Sub queries Sorting By Column Position Joins Ascending and Descending Sorts Table Aliases The WHERE Clause and Operator Multi-table Joins Symbols Outer Joins Checking for Equality Unions Checking for Inequality UNION ALL Checking for Greater or Less Than UNION Rules Checking for NULL Inserting, Updating and Deleting WHERE and ORDER BY Records The WHERE Clause and Operator INSERT Words UPDATE The BETWEEN Operator DELETE The IN Operator Managing Data The LIKE Operator Querying a Database MySql MySql Methods and Properties fopen() Inserting and Updating Records Reading from a File MySql Prepared Statements fgets() Authentication with PHP and Writing to a File MYSQL fwrite() A Database-less Login Form File Locking Session Control and Cookies flock() Sessions Uploading Files via an HTML Configuring Sessions Form Session Functions Getting File Information Cookies More File Functions Sending Email with PHP Directory Functions mail() Getting a Directory Listing Shortcomings of mail() Getting a Directory Listing PHPMailer Creating a Dreamweaver site File System Management Site creation - basic Opening a File Site creation - advanced 3 COURSE OUTLINE FOR | XPERT INFOTECH | Confidential PHP and MYSQL with CMS
  • 4. Database connections Creating a master-detail view Database basics Advanced record sets and multi- Introduction to MYSQL table queries Server behaviors Method 1 - Simple record set with Querying the database filter Building a MYSQL query using Method 2 - Advanced record set the Simple view Method 3 - Advanced record set Building a MYSQL query using and multi-table Queries the Advanced view Dynamically populating forms Adding fields from the resulting Populating text fields, text areas, records to your page and hidden fields Displaying and formatting query Populating selection lists, radio results button lists, and checkboxes Using Repeat Region to display Building record insertion forms multiple records Building the insertion form by Formatting results hand Paging through records Allowing Dreamweaver to Schemes for record set navigation generate the record insertion form Paging to first, last, previous, and automatically next records Creating a page that confirms the Show region if... record insertion Selectively displaying information Validating form entries using based on a conditional JavaScript behaviors Disabling the first and previous Understanding stored procedures record links if the first page of How they are created in the results is database displayed Advantages/disadvantages of Disabling the last and next record stored procedures versus MYSQL links if the last page of results is Calling a stored procedure without displayed passing parameters Displaying the count of the number Passing input parameters to a of records returned stored procedure Creating master-detail views Manually constructing a form that Overview of the importance of allows the user to update a record master-detail views and how they Retrieving parameters from a convey stored procedure information Updating records 4 COURSE OUTLINE FOR | XPERT INFOTECH | Confidential PHP and MYSQL with CMS
  • 5. USE OF DREAMWEAVER Using Dreamweaver to automatically generate a form for updating the record Validating the edited information using JavaScript behaviors Building a confirmation page to display the result of updating the record Deleting records Precautions to take to ensure that records are not inadvertently deleted Building an appropriate record deletion interface, complete with confirmation dialog Implementing user login/logout with Dreamweaver Overview of Web application security issues Preferred approach: configuring the Web server to manage security Alternative approach: having Dreamweaver automatically generate code for logging users in, authenticating them, and logging them out In-depth instruction on using Dreamweaver with PHP to implement user login/logout and page-by-page authentication. AJAX Ajax with PHP Ajax Overview Ajax Technology Stack Ajax Implementations Installing and configuring HTML_Ajax Pear Module Ajax Server Ajax Client WordPress Wordpress Overview, installation + Configuration Wordpress Administration Wordpress Theme Development Wordpress Plugin Development Hooks, Filters, Action, Plugin development etc. Wordpress Plugin Development Wordpress core functions, how to use, customize etc., Jquery What Are Javascript And Jquery Document Object Model (DOM) And Jquery Programming/Coding Principles 5 COURSE OUTLINE FOR | XPERT INFOTECH | Confidential PHP and MYSQL with CMS
  • 6. Separation Of Structure (HTML), Style (CSS) And Behaviors (Javscript/Jquery) Jquery Wrapper – DOM Elements As Array - $( ) Selecting And Manipulating Elements Jquery API Element Properties And Attributes Browser Event Model Jquery Event Model Putting Events To Work Animation And Effects Overview Show/Hide Elements Animate The Display State Animation And Queuing More On Jquery Utilities Extending Jquery, Plugins Dynamic Website Design With Jquery Design And (3) Plans For Implementing Jquery Functionality Drag And Drop Features Sorting Elements Changing The Size Of Elements Making Elements Selectable Buttons And Buttonsets Sliders, Tabs, Accordians Progress Bars Forms/Auto Completers Date Pickers Dialog Boxes Notes: Recommend Practical hours for student except class hours is 90 Hrs. We also provide weekend classes for all courses. After completion of 75% of course, student will go through Live Project Training, Interview Preparation and Recruitment process in Software Industry. Student will go through the training of HTML, CSS and JavaScript as a complimentary package before starting of PHP++.This is optional. 6 COURSE OUTLINE FOR | XPERT INFOTECH | Confidential PHP and MYSQL with CMS
  • 7. Our Technology Specialization and Certification Courses: 7 COURSE OUTLINE FOR | XPERT INFOTECH | Confidential PHP and MYSQL with CMS
  • 8. KEY FEATURES OF XPERT INFOTECH: KEY FEATURES OF XPERT INFOTECH: Training by Certified and Experienced Trainers. Industrial and Corporate Tie-ups for Live projects for student. Well equipped Computer Lab, Internet and Book Bank facility. Live project based Summer Trainings, Summer Internships and summer programs. 100% placement assistance on every course. Interview Preparation and Technical Events. On Campus Interviews in every month for the placement of students. WI-FI enabled classrooms. 100% Placement Assistance On Campus Interviews 58-61 (Basement), Vashist Park, Pankha Road, New Delhi-46 Ph.: 011-28526572, 65833100, 9990345891 www.xpert-infotech.com Email: info@xpert-infotech.com 8 COURSE OUTLINE FOR | XPERT INFOTECH | Confidential PHP and MYSQL with CMS