PHP Syllabus
Overview: The PHP programming language is
a server-side HTML embedded scripting language.
Let‘s depict the sentence. The PHP language runs on the
server-side. This means that the execution (read starting) of the scripts are
done on the server where the web-site is hosted. HTML embedded means that you
can use PHP statements (read a piece of PHP code) from within an HTML code. PHP
files are returned to the browser as plain HTML.
The last piece of the sentence – scripting language – is a little
harder to explain, but we will give it a go. A scripting language is a form of
programming language that is usually interpreted rather than compiled. In programming
languages such C or C++ you
compile the program (permanently) into an executable file, before you can
execute the program. A program that is written in a scripting language, is
interpreted one command at a time by a command interpreter (Command interpreter
is in most cases an executable written in another language (for instance C/C++)
than the scripting language.) Some other examples of scripting languages are
Perl, Phyton, Java and Ruby.
Session
-1
·
Histrory of PHP
·
Understanding client/server roles
·
PHP, MySQL
·
Wamp Installation
Session
-2
·
PHP Basic syntax
·
PHP data Types
·
PHP Variables
·
PHP Operators
·
PHP Loops
Session-3
·
PHP Enumerated Arrays
·
PHP Associative Arrays
·
PHP Multi-Dimensional Arrays
Session-4
·
PHP Functions
·
Syntax
·
Arguments
·
Variables
·
Pass by Value
·
Return Values
·
PHP include()
·
PHP require()
Session-5
·
PHP Form handling
·
PHP GET
·
PHP POST
·
PHP Form Validation
Session-6
·
PHP Cookie handling
·
PHP Session Handling
·
PHP Login Session
·
Managing users
Session-7
·
Strings and Patterns
·
Matching
·
Extracting
·
Searching Replacing
·
Formatting
Session-8
·
Database basics
·
Indexes
·
PHP MyAdmin
·
Connect
·
Database Manipulation
Comments
Post a Comment