What is Inheritance ? Inheritance is one of the popularly used Object Oriented Programming features. It allows having shared properties and functions between related classes. […]
Read MoreCategory: Developer tips
Dynamic Menu in PHP
Steps to creating menu using array in PHP Step 1 : Create the array for menu A menu consist of choices where each choice has […]
Read MorePHP Cookies
What is a cookie Cookies are used to store the information of a web page in a remote browser so that when the same user […]
Read MorePHP Date & Time
The PHP date() function is used to format a date and/or a time. Syntax: <?php date(format,[timestamp]); ?> Here, “date(…)” is the function that returns the […]
Read MorePHP File Handling
When we develop a web application using PHP, quite often we need to work with external files, like reading data from a file or maybe […]
Read More