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
Category: Core PHP
Core PHP is a simple, bare-bones PHP programming language. It can be used to create web applications.
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
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
PHP is a server-side, open source scripting language that help you to create dynamic and interactive webpages. PHP is a general-purpose scripting language that was originally conceived by Rasmus Lerdorf in 1995. Lerdorf created PHP to satisfy the need for an easy way to process data when creating pages for the World Wide Web. What … Continue reading PHP Introduction