Media queries enable to write css on the basis of device width, height, orientation(portrait or landscape) and physical attribute. Everything cha...
PHP has a built-in great support for the array to work with. There are numerous inbuilt array and string functions – like array_chunk, array_com...
Laravel’s migrations and schema builder are very powerful and by using these features, you won’t have to write any SQL code. Lar...
PHP supports and comes with many inbuilt math functions, which always comes handy while performing complex calculation rather than writing y...
Laravel Eloquent is a powerful ORM that uses Active Record Pattern which is a technique to wrap database into objects. By usi...
Laravel is an open source PHP framework, which is created by Taylor Otwell. We all know that developing a whole website from scratch can be...
The Composer Dependency Manager is very helpful when you need to install PHP-related frameworks, for example, PHPUnit or...
Object-oriented Programing in PHP helps to develop big application easily with code re-usability and modularity of classes. Unlike the proce...
Typography is a very important part of front-end designing. A beautiful font for heading can attract and say more than whole of yo...
$_SESSION is a special array used to store information across the page requests a user makes during his visit to your website or web applica...
PHP implode and explode functions are very easy to use. In this tutorial, we will learn how to do it. Let’s check it out. There...
It requires a little more thinking while working with loops in multidimensional arrays. Let’s see the situation here. Say w...
We know that array is the collection of data in list form, but what if we need to sort the data or sort it in reverse order or if...
The Ternary operator in PHP is a built-in operator that acts like an if statement in PHP. It shares with several other languages. It has an unus...
How to send an email using PHP Sending emails in PHP is safe and easy. Using the PHP mail function, we can easily send emails from the website forms....