Array in php

In PHP, there are three types of arrays: Indexed arrays - Arrays with a numeric index Associative arrays - Arrays with named keys Multidimensional arrays - Arrays containing one or more arrays <?php…

0 Comments

Loop in php

Like any other language, loop in PHP is used to execute a statement or a block of statements, multiple times until and unless a specific condition is met. This helps…

0 Comments

PHP Constant

Constants are either identifiers or simple names that can be assigned any fixed values. They are similar to a variable except that they can never be changed. They remain constant…

0 Comments

PHP variable and its scope

Variable Scopes: The scope of a variable is defined as its extent in the program within which it can be accessed, i.e. the scope of a variable is the portion of…

0 Comments

Chat feature in laravel

Goto: https://chatify.munafio.com/installation composer require laravel/jetstream php artisan jetstream:install livewire php artisan jetstream:install livewire --teams composer require munafio/chatify php artisan chatify:install php artisan migrate php artisan serve Goto this link: http://127.0.0.1:1000/chatify…

0 Comments

wordpress custom login/signup page

Ultimate Dashboard – Custom WordPress Dashboard Plugin Install & Activate. Hover on Ultimate Dashboard option and choose login form or other according to need. And customize the form.    …

0 Comments