php
-
Nov- 2021 -7 NovemberLaravel
How to Sort Collections in Laravel and PHP
You can use sortBy for laravel collection for sorting by custom orders. You can do like this: $collection = collect($array);…
Read More » -
Oct- 2021 -30 OctoberLaravel
Saving an Image from URL in PHP/Laravel
Sometimes, need to download an image from a particular URL and use it in the project. It’s easy to go…
Read More » -
13 OctoberPHP
Why PHP is known as a scripting language?
PHP is a server-side scripting language that is used to develop Static websites or Dynamic websites or Web applications. It…
Read More » -
May- 2021 -7 MayLaravel
Select random row using Eloquent in Laravel
If you want to select a random row using eloquent in Laravel , here is how to do it in…
Read More » -
Mar- 2021 -14 MarchPHP
Create a Zip File Using PHP
Creating .ZIP archives using PHP can be just as simple as creating them on your desktop. PHP’s ZIP class provides…
Read More » -
Jan- 2021 -26 JanuaryLaravel
Enabling SSL (HTTPS protocol) with xampp in a local PHP project
You may probably tried to simply change the url in the browser with https instead of http at the beginning, however the only thing you’ll…
Read More » -
Jul- 2020 -27 JulyPHP
Top 15 OOPS Interview Questions & Answers Asked by MNCs
OOPs Interview Questions & Answers 1. What is OOPs? OOPs refer to Object-Oriented Programming system in which programs are treated…
Read More » -
May- 2020 -11 MayPHP
FUNCTION IN PHP
In php their are thousands of in-bulit function.But user can also defined the function according to requirements PHP User-defined Functions…
Read More » -
11 MayPHP
PHP Conditional Statements
Conditional statements in PHP nothing but an action which works on different situation or condition . In PHP following are…
Read More » -
6 MayPHP
PHP Check If Array Is Multidimensional or Not
In this tutorial, we will discuss check if the array is multidimensional or not in PHP. This post will give…
Read More »