String reverse without using library function in php | PHP reverse string without strrev | String manipulation programs in php

Reverse String without inbuilt function in PHP

PHP reverse string without strrev, This is very simple to reverse a String in PHP by using inbuild function strrev. But sometimes in php interview, interviewer may ask how to Reverse a String in PHP without using strrev function or String reverse without using library function in php There are few simple steps to answer … Read more

Drupal as headless cms | drupal vs headless cms | decoupled drupal | headless drupal tutorial

Headless Drupal

Table of content What is Drupal Headless CMS ? Drupal headless architecture Why Drupal headless CMS ? Drupal vs headless cms | Drupal headless vs decoupled Which Decoupled Drupal Solution is Best for You? Why headless CMS is growing? Is headless Drupal suited for any kind of project? Benefits of Drupal as a headless CMS … Read more

Install drupal 9 module using composer | download module in drupal 9 via composer

download-and-enabled-drupal9-module-using-composer-and-drush.

Table of Content Download Drush using composer Download modules using composer Enable module using drush Manual Download & Enabled Module Related: Install drupal 9 using composer with lando Download Drush using composer What is Drush ? The name Drush stands for DRUpal SHell. Drush is a command line utility you can use to communicate to … Read more

Install drupal 9 using composer with lando

Install drupal 9 using composer with lando

Drupal is a free and open source content-management framework written in PHP using Symfony framework and distributed under the GNU General Public License. Worlwise approximate 2.3% web sites devloped using Drupal – it’s ranging from personal blogs to corporate, political, and government sites. Table of content Create & Download project using composer Switch to created … Read more

MySQL query to get all fields of customer having Y in their firstname or lastname in ascending order of their city names

Select Query

MySQL select query, we will perform below actions. List all customers who is active List all customers who is active and ‘Y’ in their firstname List all customers who is active and ‘Y’ in their lastname List all customers who having ‘Y’ in their lastname or lastname (either one) List all customers who having ‘Y’ … Read more

Change size in mysql query | Alter column size in mysql

Increase Column Size

Change size in mysql table using query, mean you can increase/decrease, add, modify, delete mysql table columns and columns definition. Table of content Show Structure of table Increase column size of table How to show structure of already created table Query: desc student (note: student is a table name) Increase column size of table Query: … Read more

Install Drupal 9 using composer

Composer can be used to manage Drupal and all dependencies (modules, themes, libraries). Make sure you have composer installed on your local machine before executing any Composer commands Create/Download Project using composer Install Drush Install Drupal site using drush and configured Database configured local site: apache vhost file configured local site : windows host file … Read more

Mysql Alter table| Add column in mysql table | MySQL alter commands

Mysql Alter table

MySQL alter command is used to modify an existing database, table, view or other database objects that might need to change during the life cycle of a database. Or you can used when you want to change the name of your table or any table field. It is also used to add or delete an … Read more

PHP interview questions | php interview questions and answers | top 70 php interview questions and answers | top 70 php interview questions and answers for 0 – 4 years experience

PHP Interview questions and answers

Dear Programmers, in this article we will discussed on PHP Interview Questions and Answers in details.  As per our experience and expectation, this article will cover more than 80% of PHP Interview Questions and Answers. Later on if you will work on project, even it will help lots.   We are trying to provide best … Read more

mysql query | mysql query commands | mysql query tutorial

Mysql Query

In this article we will discuss about MySQL Query e.g. Create/show/drop database as well create/alert and delete table and table records. Table of Contents Login to MySQL Create a Database Use Database Show Database Drop Database Create a Table Show structure of table Insert Data into table Select record from Table Update record from Table … Read more