Knowledge in php codesniffer

BEST CODING PRACTICES

Sharing the notes of BEST CODING PRACTICES in the attatchment below. The attatchment includes topics such as Software quality, Prerequisites, Life cycle, Requirements, Architecture, Design, etc. Watch related videos on this link - https://www.youtube.com/results?search_query=BEST+CODING+PRACTICES+Ajaze+Khan

PHP: The Basics

Here we get to know about the basic concepts of PHP like: PHP: The Basics What is it? What can it do? Fundamentals Preparing to code with PHP and many more...

PHP-Introduction to php

Here we get to know about the basic concepts of PHP like: Introduction to php Background History About Zend PHP 5 Architecture PHP Scripts and many more

PHP-PHP Classes & Object Orientation

Here we get to know about the basic concepts of PHP like: PHP Classes and Object Orientation What is a class? Class Definition An example class definition for a dog. The dog object has a single attribute, the name, and can perform the action of barking. Define the name of the class. Class Usage

PHP-Client/Server on the WWW

Here we get to know about the basic concepts of PHP like: Client/Server on the WWW Server Side Programming PHP - What is it / does it do? Static resources such as regular HTML are simply output to the client from the server PHP Summary PHP Language Basics PHP - Variables and many more

PHP-PHP NUMERIC AND STRING FUNCTIONS

Here we get to know about the basic concepts of PHP like: PHP NUMERIC AND STRING FUNCTIONS NUMERIC FUNCTIONS floor(): abs(): pow(): and many more functions

PHP-Ridiculous DB support

Here we get to know about the basic concepts of PHP like: Ridiculous DB support (and more) DB support Writing a database-enabled web page is incredibly simple Basic syntax Instruction Separation Comments TYPES Scalars Very simple: $foo = true; (boolean) $foo = 20; (integer) $foo = 3.1415; (float)

PHP-How to install PHP

Here we get to know about the basic concepts of PHP like: How to install PHP PHP References PHP functions Advantages of Using PHP to enhance Web pages: Easy to use Simpler than Perl Open source Multiple platform. How PHP Pages are Accessed and Interpreted WHH Note Exploring the Basic PHP Development Process

PHP-Hello World

Here we get to know about the basic concepts of PHP like: PHP Hello World In PHP, we use // to make a single-line comment or /* and */ to make a large comment block. > Variables are used for storing values, like text strings, numbers or arrays. > When a variable is declared, it can be used over and over again in your script. > All variables in PHP start with a $ sign symbol. > The correct way of declaring a variable in PHP: