
Search In
Hello Readers,
Today we will discuss about "Php server variables".
$_SERVER is one of the tremendous world-wide specifics within PHP. It includes information regarding headers, server, web host in addition to and many others. Its content has enormo
Git is very useful in these days to manage your code repository. It is very useful when there are multiple repositories and multiple developers working concurrently. I found below content very useful. It is also assume that you are familiar with git
Welcome to FindNerd. We are going to discuss the finally block in php. We use it with Exception handling. Are you familiar with exception if not then check our
exception based blog Exception concept for help. finally block run always whenever code ex
Hello friends,
Today we learn how to generate a random number in PHP. In PHP, following function are used to generate random numbers.
rand():
rand() function is used to display a random number.
Syntax:
rand();
Or you can also write the syn
Hi Reader's,
Welcome to FindNerd,today we are going to discuss on authenticate application in CakePHP using Auth Component.
If we are developing a web application in CakePHP then some time we have to use Authenticate user for login functionality
Hello Readers
overloading and overridding in php
In php overloading define functions have similar signatures but thy have different parameters.
Overriding means one class may have override the another methods where the parent class defined a metho
Hi reader's today we will discuss "How to inherit a controller in another controllers in cakephp".
In cake php controllers are nothing more than php classes, You can inherit a controller to another just like a hierarchy of inheritance. Let's have a
In PHP programming, Many times we have seen and used different operators of PHP. This article demonstrate the difference between the operators which looks identical but used for different operations. In PHP we have three types of equal sign (=) opera
Hello Reader's, If you want to make folder zip functionality through website then PHP give you to do this. PHP uses ZipArchive() to create the zip files from the destination path provided. So lets get started working creating a zip folder.
Interpreter
Translates one statement of a program at a time.
The time it takes to interpret source code is very less.
Interpreter program works line by line.
Error is reported as soon as first error is encountered
Example of languages that makes use
