PHP - Page 34

Execution Time Limit in PHP

In PHP, the default time for executing a program is 30 seconds. This will be set in php.ini file and the directive corresponding to this con ...

June 19th, 2013

PHP Inheritance

Inheritance is one of the popularly used Object Oriented Programming features. It allows having shared properties and functions between rela ...

June 18th, 2013

PHP Errors

There are various possible error occurrences may happen in PHP. These errors are categorized based on the time of occurrences and based on w ...

June 17th, 2013

PHP Array Sort

PHP includes powerful array functions which are quite interesting and very useful for working with. For example, array_keys(), array_values, ...

June 16th, 2013

MySQL Fetch using PHP

PHP provides a huge list of MySQL functions to access the database from the front end. Among those functions, we are going to discuss some o ...

June 14th, 2013

PHP Variable Varibles

Variable variables are the special features of PHP in PHP. It supports storing the name of a variable into a variable. It is used to change ...

June 13th, 2013

PHP Scope Resolution Operator

Why is this called as scope resolution operator? This operator is used to refer the scope of some block or program context like classes, obj ...

June 10th, 2013

PHP Pagination

For an improved version of this script, visit PHP Pagination MySQL Database Example Script with Previous Next like Google. In this article, ...

June 7th, 2013

Formatting Dates in PHP

PHP contains several inbuilt functions for changing the date-time format. In this tutorial, we are going to see the characters used in repre ...

June 5th, 2013

PHP Mail

PHP provides a mail() function for sending simple mail using PHP scripts. For that, the mail() function requires three arguments compulsoril ...

June 4th, 2013

↑ Back to Top