SlideShare uma empresa Scribd logo
1 de 8
Baixar para ler offline
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

Mais conteúdo relacionado

Mais procurados

Boston 2011 OTN Developer Days - Java EE 6
Boston 2011 OTN Developer Days - Java EE 6Boston 2011 OTN Developer Days - Java EE 6
Boston 2011 OTN Developer Days - Java EE 6Arun Gupta
 
Java Web Programming [4/9] : JSP Basic
Java Web Programming [4/9] : JSP BasicJava Web Programming [4/9] : JSP Basic
Java Web Programming [4/9] : JSP BasicIMC Institute
 
Hibernate Developer Reference
Hibernate Developer ReferenceHibernate Developer Reference
Hibernate Developer ReferenceMuthuselvam RS
 
Summer training java
Summer training javaSummer training java
Summer training javaArshit Rai
 
Model-Driven Software Development - Strategies for Design & Implementation of...
Model-Driven Software Development - Strategies for Design & Implementation of...Model-Driven Software Development - Strategies for Design & Implementation of...
Model-Driven Software Development - Strategies for Design & Implementation of...Eelco Visser
 
Elements of Java Language
Elements of Java Language Elements of Java Language
Elements of Java Language Hitesh-Java
 
Java Training in Chennai | Advanced Java Training in chennai | J2EE Training ...
Java Training in Chennai | Advanced Java Training in chennai | J2EE Training ...Java Training in Chennai | Advanced Java Training in chennai | J2EE Training ...
Java Training in Chennai | Advanced Java Training in chennai | J2EE Training ...Core Mind
 
Java Web Programming [3/9] : Servlet Advanced
Java Web Programming [3/9] : Servlet AdvancedJava Web Programming [3/9] : Servlet Advanced
Java Web Programming [3/9] : Servlet AdvancedIMC Institute
 
JDBC : Java Database Connectivity
JDBC : Java Database Connectivity JDBC : Java Database Connectivity
JDBC : Java Database Connectivity DevAdnani
 
Business Objects....is it LOV?
Business Objects....is it LOV?Business Objects....is it LOV?
Business Objects....is it LOV?Terry Smith
 
Java Web Programming [6/9] : MVC
Java Web Programming [6/9] : MVCJava Web Programming [6/9] : MVC
Java Web Programming [6/9] : MVCIMC Institute
 

Mais procurados (18)

Jdbc
JdbcJdbc
Jdbc
 
Boston 2011 OTN Developer Days - Java EE 6
Boston 2011 OTN Developer Days - Java EE 6Boston 2011 OTN Developer Days - Java EE 6
Boston 2011 OTN Developer Days - Java EE 6
 
Java Web Programming [4/9] : JSP Basic
Java Web Programming [4/9] : JSP BasicJava Web Programming [4/9] : JSP Basic
Java Web Programming [4/9] : JSP Basic
 
Hibernate tutorial
Hibernate tutorialHibernate tutorial
Hibernate tutorial
 
Java EE and Glassfish
Java EE and GlassfishJava EE and Glassfish
Java EE and Glassfish
 
Hibernate Developer Reference
Hibernate Developer ReferenceHibernate Developer Reference
Hibernate Developer Reference
 
Summer training java
Summer training javaSummer training java
Summer training java
 
Model-Driven Software Development - Strategies for Design & Implementation of...
Model-Driven Software Development - Strategies for Design & Implementation of...Model-Driven Software Development - Strategies for Design & Implementation of...
Model-Driven Software Development - Strategies for Design & Implementation of...
 
Elements of Java Language
Elements of Java Language Elements of Java Language
Elements of Java Language
 
Struts N E W
Struts N E WStruts N E W
Struts N E W
 
Java Training in Chennai | Advanced Java Training in chennai | J2EE Training ...
Java Training in Chennai | Advanced Java Training in chennai | J2EE Training ...Java Training in Chennai | Advanced Java Training in chennai | J2EE Training ...
Java Training in Chennai | Advanced Java Training in chennai | J2EE Training ...
 
10 jdbc
10 jdbc10 jdbc
10 jdbc
 
Java Web Programming [3/9] : Servlet Advanced
Java Web Programming [3/9] : Servlet AdvancedJava Web Programming [3/9] : Servlet Advanced
Java Web Programming [3/9] : Servlet Advanced
 
Dot net training bangalore
Dot net training bangaloreDot net training bangalore
Dot net training bangalore
 
Dao example
Dao exampleDao example
Dao example
 
JDBC : Java Database Connectivity
JDBC : Java Database Connectivity JDBC : Java Database Connectivity
JDBC : Java Database Connectivity
 
Business Objects....is it LOV?
Business Objects....is it LOV?Business Objects....is it LOV?
Business Objects....is it LOV?
 
Java Web Programming [6/9] : MVC
Java Web Programming [6/9] : MVCJava Web Programming [6/9] : MVC
Java Web Programming [6/9] : MVC
 

Destaque

A content repository for your PHP application or CMS?
A content repository for your PHP application or CMS?A content repository for your PHP application or CMS?
A content repository for your PHP application or CMS?Paul Borgermans
 
What is cms_in_php
What is cms_in_phpWhat is cms_in_php
What is cms_in_phpSwati Sharma
 
CONTENT MANAGEMENT SYSTEM nw
CONTENT MANAGEMENT SYSTEM nwCONTENT MANAGEMENT SYSTEM nw
CONTENT MANAGEMENT SYSTEM nwRana Harsh
 
The 2013 Content Management System Report Card-Idealware
The 2013 Content Management System Report Card-IdealwareThe 2013 Content Management System Report Card-Idealware
The 2013 Content Management System Report Card-IdealwareIdealware
 
Content Management Systems compared
Content Management Systems comparedContent Management Systems compared
Content Management Systems comparedCharityComms
 
6 Week / Month Industrial Training in Hoshiarpur Punjab- PHP Project Report
6 Week / Month Industrial Training in Hoshiarpur Punjab- PHP Project Report 6 Week / Month Industrial Training in Hoshiarpur Punjab- PHP Project Report
6 Week / Month Industrial Training in Hoshiarpur Punjab- PHP Project Report c-tac
 
Industrial training report
Industrial training reportIndustrial training report
Industrial training reportAnurag Gautam
 

Destaque (8)

Tech talk php_cms
Tech talk php_cmsTech talk php_cms
Tech talk php_cms
 
A content repository for your PHP application or CMS?
A content repository for your PHP application or CMS?A content repository for your PHP application or CMS?
A content repository for your PHP application or CMS?
 
What is cms_in_php
What is cms_in_phpWhat is cms_in_php
What is cms_in_php
 
CONTENT MANAGEMENT SYSTEM nw
CONTENT MANAGEMENT SYSTEM nwCONTENT MANAGEMENT SYSTEM nw
CONTENT MANAGEMENT SYSTEM nw
 
The 2013 Content Management System Report Card-Idealware
The 2013 Content Management System Report Card-IdealwareThe 2013 Content Management System Report Card-Idealware
The 2013 Content Management System Report Card-Idealware
 
Content Management Systems compared
Content Management Systems comparedContent Management Systems compared
Content Management Systems compared
 
6 Week / Month Industrial Training in Hoshiarpur Punjab- PHP Project Report
6 Week / Month Industrial Training in Hoshiarpur Punjab- PHP Project Report 6 Week / Month Industrial Training in Hoshiarpur Punjab- PHP Project Report
6 Week / Month Industrial Training in Hoshiarpur Punjab- PHP Project Report
 
Industrial training report
Industrial training reportIndustrial training report
Industrial training report
 

Semelhante a Summer PHP MySQL Intern Course

Php training centre in adyar
Php training centre in adyarPhp training centre in adyar
Php training centre in adyarsasikalaD3
 
Php training centre in Adyar
Php training centre in AdyarPhp training centre in Adyar
Php training centre in AdyarsasikalaD3
 
PHP Course in pune , PHP Training in Pimpri chinchwad ,PHP training in Pune
PHP Course in pune , PHP Training in Pimpri chinchwad ,PHP training in PunePHP Course in pune , PHP Training in Pimpri chinchwad ,PHP training in Pune
PHP Course in pune , PHP Training in Pimpri chinchwad ,PHP training in PuneCNC WEB WORLD
 
Cegonsoft-Php training institute Bangalore
Cegonsoft-Php training institute BangaloreCegonsoft-Php training institute Bangalore
Cegonsoft-Php training institute Bangaloredhivyas19
 
Spring_Course_Content
Spring_Course_ContentSpring_Course_Content
Spring_Course_ContentMV Solutions
 
Cegonsoft PHP training institute in bangalore
Cegonsoft PHP training institute in bangaloreCegonsoft PHP training institute in bangalore
Cegonsoft PHP training institute in bangaloreCegonsoft Fames
 
Cegonsoft PHP training institute in Bnaglaore
Cegonsoft PHP training institute in BnaglaoreCegonsoft PHP training institute in Bnaglaore
Cegonsoft PHP training institute in BnaglaoreCegonsoft Fames
 
Java se 8 fundamentals
Java se 8 fundamentalsJava se 8 fundamentals
Java se 8 fundamentalsmegharajk
 
java classes in pune
java classes in punejava classes in pune
java classes in punecncwebjava
 
Complete java syllabus 7448062045 Yesdo Sddd
Complete java syllabus 7448062045 Yesdo SdddComplete java syllabus 7448062045 Yesdo Sddd
Complete java syllabus 7448062045 Yesdo SdddYesdo Softindia Pvt Ltd
 
Datastage coursecontent
Datastage coursecontentDatastage coursecontent
Datastage coursecontentAmit Sharma
 

Semelhante a Summer PHP MySQL Intern Course (20)

Php training centre in adyar
Php training centre in adyarPhp training centre in adyar
Php training centre in adyar
 
Java Online Training
Java Online TrainingJava Online Training
Java Online Training
 
Php training centre in Adyar
Php training centre in AdyarPhp training centre in Adyar
Php training centre in Adyar
 
PHP Course in pune , PHP Training in Pimpri chinchwad ,PHP training in Pune
PHP Course in pune , PHP Training in Pimpri chinchwad ,PHP training in PunePHP Course in pune , PHP Training in Pimpri chinchwad ,PHP training in Pune
PHP Course in pune , PHP Training in Pimpri chinchwad ,PHP training in Pune
 
Cegonsoft-Php training institute Bangalore
Cegonsoft-Php training institute BangaloreCegonsoft-Php training institute Bangalore
Cegonsoft-Php training institute Bangalore
 
Php course-syllabus
Php course-syllabusPhp course-syllabus
Php course-syllabus
 
Spring_Course_Content
Spring_Course_ContentSpring_Course_Content
Spring_Course_Content
 
ORACLE 9i
ORACLE 9iORACLE 9i
ORACLE 9i
 
PHP | ZENUS INFOTECH INDIA PVT. LTD.
PHP | ZENUS INFOTECH INDIA PVT. LTD. PHP | ZENUS INFOTECH INDIA PVT. LTD.
PHP | ZENUS INFOTECH INDIA PVT. LTD.
 
Framework 4
Framework 4Framework 4
Framework 4
 
Php mysql 2
Php mysql 2Php mysql 2
Php mysql 2
 
Cegonsoft PHP training institute in bangalore
Cegonsoft PHP training institute in bangaloreCegonsoft PHP training institute in bangalore
Cegonsoft PHP training institute in bangalore
 
Cegonsoft PHP training institute in Bnaglaore
Cegonsoft PHP training institute in BnaglaoreCegonsoft PHP training institute in Bnaglaore
Cegonsoft PHP training institute in Bnaglaore
 
PHP & mySQL Training in Bangalore at myTectra
PHP & mySQL Training in Bangalore at myTectraPHP & mySQL Training in Bangalore at myTectra
PHP & mySQL Training in Bangalore at myTectra
 
P mysql training in bangalore
P mysql training in bangaloreP mysql training in bangalore
P mysql training in bangalore
 
Java se 8 fundamentals
Java se 8 fundamentalsJava se 8 fundamentals
Java se 8 fundamentals
 
Live Project Training in PHP at Delhi, Janakpuri
Live Project Training in PHP at Delhi, JanakpuriLive Project Training in PHP at Delhi, Janakpuri
Live Project Training in PHP at Delhi, Janakpuri
 
java classes in pune
java classes in punejava classes in pune
java classes in pune
 
Complete java syllabus 7448062045 Yesdo Sddd
Complete java syllabus 7448062045 Yesdo SdddComplete java syllabus 7448062045 Yesdo Sddd
Complete java syllabus 7448062045 Yesdo Sddd
 
Datastage coursecontent
Datastage coursecontentDatastage coursecontent
Datastage coursecontent
 

Mais de XPERT INFOTECH

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

Mais de XPERT INFOTECH (10)

Presenter manual web designing (specially for summer interns)
Presenter manual web designing (specially for summer interns)Presenter manual web designing (specially for summer interns)
Presenter manual web designing (specially for summer interns)
 
Presenter manual SEO and internet marketing (specially for summer interns)
Presenter manual SEO and internet marketing (specially for summer interns)Presenter manual SEO and internet marketing (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 D2K (specially for summer interns)Presenter manual oracle D2K (specially for summer interns)
Presenter manual oracle D2K (specially for summer interns)
 
Presenter manual oracle dba (specially for summer interns)
Presenter manual oracle dba (specially for summer interns)Presenter manual oracle dba (specially for summer interns)
Presenter manual oracle dba (specially for summer interns)
 
Presenter manual core java (specially for summer interns)
Presenter manual  core java (specially for summer interns)Presenter manual  core java (specially for summer interns)
Presenter manual core java (specially for summer interns)
 
Presenter manual J2EE (specially for summer interns)
Presenter manual  J2EE (specially for summer interns)Presenter manual  J2EE (specially for summer interns)
Presenter manual J2EE (specially for summer interns)
 
Presenter manual embedded systems (specially for summer interns)
Presenter manual   embedded systems (specially for summer interns)Presenter manual   embedded systems (specially for summer interns)
Presenter manual embedded systems (specially for summer interns)
 
Presenter manual cloud computing (specially for summer interns)
Presenter manual   cloud computing (specially for summer interns)Presenter manual   cloud computing (specially for summer interns)
Presenter manual cloud computing (specially for summer interns)
 
Presenter manual android development (specially for summer interns)
Presenter manual   android development (specially for summer interns)Presenter manual   android development (specially for summer interns)
Presenter manual android development (specially for summer interns)
 
I phone ipad-course-content
I phone ipad-course-contentI phone ipad-course-content
I phone ipad-course-content
 

Último

Class 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfClass 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfakmcokerachita
 
Painted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaPainted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaVirag Sontakke
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxthorishapillay1
 
internship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developerinternship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developerunnathinaik
 
Biting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdfBiting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdfadityarao40181
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17Celine George
 
भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,Virag Sontakke
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13Steve Thomason
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentInMediaRes1
 
Blooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docxBlooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docxUnboundStockton
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...Marc Dusseiller Dusjagr
 
Science 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsScience 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsKarinaGenton
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Celine George
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdfssuser54595a
 
Science lesson Moon for 4th quarter lesson
Science lesson Moon for 4th quarter lessonScience lesson Moon for 4th quarter lesson
Science lesson Moon for 4th quarter lessonJericReyAuditor
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application ) Sakshi Ghasle
 
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxEPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxRaymartEstabillo3
 

Último (20)

Class 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfClass 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdf
 
Painted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaPainted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of India
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptx
 
internship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developerinternship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developer
 
Biting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdfBiting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdf
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17
 
भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media Component
 
Blooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docxBlooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docx
 
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
 
Science 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsScience 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its Characteristics
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
 
Science lesson Moon for 4th quarter lesson
Science lesson Moon for 4th quarter lessonScience lesson Moon for 4th quarter lesson
Science lesson Moon for 4th quarter lesson
 
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application )
 
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxEPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
 

Summer PHP MySQL Intern Course

  • 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