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
-
POST Method in ASP.NET The POST method transfers information via HTTP headers. The information is encoded as described in case of GET method...
-
Show Data through User ID using Stored Procedure in ASP.NET Default.aspx <% @ Page Title ="Home Page" Language ="C#...
-
Get Method in ASP.NET The GET method sends the encoded user information appended to the page request. The page and the encoded information a...