PHP Basics

PHP Delimiters

PHP delimiters are nothing but open-close tags to enclose PHP scripts. PHP code can be parsed if and only if it is enclosed with these delim ...

June 26th, 2013

PHP Redirect

PHP redirect mechanism is used to navigate the user from one page to another without clicking any hyperlinks. This will be helpful in such c ...

May 28th, 2013

PHP Constants

Like as many programming languages, PHP also contains constants. It has some predefined constants in its core like PHP_VERSION, PHP_DEBUG an ...

April 26th, 2013

PHP Loops

Loops are used to run the same lines of code multiple times. If we want to execute the same code multiple times then we can put it into a lo ...

April 23rd, 2013

PHP include() Vs require()

In this tutorial, we are going to see the list of functions used in PHP to include an external file into a program. PHP provides various fun ...

April 22nd, 2013

PHP Print Statements

In PHP there are various methods to print data. PHP provides more functions and language constructs for printing various data types. These f ...

April 18th, 2013

PHP Comments

Comments on source code will be useful for denoting the details of the code logic. For example, if we define a function in our program, we s ...

April 13th, 2013

PHP Hello World

This is the first post on my PHP blog, Phppot. I am starting this blog with enthusiasm, love, and confidence. I hope I will add some value t ...

April 11th, 2013

↑ Back to Top