PHP Function

PHP Function Function are self contained block of statement which used to perform any specific task. Types of Function system defined/library/inbuilt user defined   Advantages Of Function => A function is created once but used many times, often from more than one program.=> It reduces duplication within a program.=> Debugging and testing a program becomes … Continue reading PHP Function

Object Oriented PHP

  What is OOPs? OOPs (object oriented programming system) concept is use to make powerful, robust and secure programming instructions. With any language reference there are only three basic object oriented prog concept. Encapsulation and data abstraction Inheritence Polymorphism Advantages of OOPs Real world programming Ability to simulate real world event much more effectively. Reusable … Continue reading Object Oriented PHP

PHP Variables

  Variables: A variable is simply a container that’s used to store both numeric and non-numeric information. PHP has some simple rules for naming variables. Every variable name must be preceded with a dollar ($) symbol and must begin with a letter or underscore character,optionally followed by more letters, numbers, or underscore characters. Common punctuation … Continue reading PHP Variables