Tag: Php

What are the Best PHP Frameworks Available?

Within the past few years as PHP has evolved as the scripting language of choice…

Most Common Mistakes When Using a PHP Framework

Mistakes are possible in any type of programming, but PHP frameworks help to limit these…

What to Look for in a PHP Framework?

There’s plenty of options available to anyone who may be searching for PHP frameworks, and…

Why Should we use a PHP Framework?

Developers should utilize PHP frameworks for various reasons, but the number one reason is for…

What is a PHP Framework?

PHP is the world’s most popular scripting language for many different reasons – flexibility, ease-of-use,…

Creating directories in php with mkdir()

mkdir() php function enables you to create a directory. mkdir() requires a string representing the…

Calculate number of days between two given dates using PHP using strtotime?

The strtotime php function is used to parse any English textual datetime description into a…

Sessions in PHP : Part 4 – Cleaning and destroying PHP session

The unset() function is used to unset or free a session variable that has been…

Receive and manipulate array in form post data

Arrays can be passed from a html web form to a php script. The ‘name’…

PHP localtime – Get current datetime as an array

The localtime function is used to get the current date and time from the operating…

Removing a directory in php with rmdir()

The php function rmdir() enables developers to remove a directory from the file system. The…