PHP Variables In PHP, a variable starts with the $ sign, followed by the name of the variable: Eg-:<?php $txt = "Hello world!...
Home / Posts filed under PHP
Showing posts with label PHP. Show all posts
Showing posts with label PHP. Show all posts
Wednesday, 24 July 2019
Tuesday, 23 July 2019
File handling and Exception in PHP
File handling in PHP File handling is needed for any application. For some tasks to be done file needs to be processed. File handling i...
Abstract Classes, Static Keyword, Final Keyword and Calling parent constructors
Abstract Classes An abstract class is one that cannot be instantiated, only inherited. You declare an abstract class with the keyword a...
INTERFACES in PHP
INTERFACES in PHP An interface is a description of the actions that an object can do. Interface is written in the same way as the class...
Types of Interfaces in PHP
Interfaces in PHP Interfaces are defined to provide a common function names to the implemented. Different implements can implement thos...
Subscribe to:
Posts (Atom)
Labels
POPULAR POST
-
1. Program Structure in C++ A C++ program follows a well-defined structure. The basic components are: #include <iostream> using namesp...
-
Declaration of Variables in C++ A variable in C++ is a named memory location used to store data. Before using a variable, it must be decla...
-
Operators are special symbols that perform operations on variables and values. Example int a = 5 + 3; // '+' is an addition operato...