The Code Developer Programming Blog
800 FOLLOWERS
The Code Developer is a Programming Blog Maintained by Vikas Tyagi. Tutorials focused on programming, PHP, MySQL, WordPress, Web Development, Web Design.
The Code Developer Programming Blog
4y ago
In this tutorial we will show you how to Install Yii With XAMPP On Windows Using Composer step by step. Yii uses Composer, a dependency management tool, as the officially supported method for installation. Through Composer it’s simple and easy to installing latest Yii 2.0 version by running a single command.
To Install Yii With XAMPP On Windows Using Composer, follow the below given steps:
What Is Yii?
Server Requirements
Install XAMPP
Install Composer
Installing Yii
Configuring the Host File in Windows
Let’s get started:
#1. What Is Yii?
Yii is an incredibly r ..read more
The Code Developer Programming Blog
4y ago
In this article we will give you a step-by-step guide on how to install Laravel with XAMPP on Windows Using Composer. Through Composer it’s simple and easy to install Laravel with XAMPP.
# Server Requirements
Since we want to work with the latest version of Laravel 5.6, make sure your server meets the following requirements:
PHP >= 7.1.3
OpenSSL PHP Extension
PDO PHP Extension
Mbstring PHP Extension
Tokenizer PHP Extension
XML PHP Extension
Ctype PHP Extension
JSON PHP Extension
For more information, you can check the Server Requirements from Laravel official site ..read more
The Code Developer Programming Blog
4y ago
In this article write a C++ Program to print Floyd’s triangle. This Program first takes the numbers of rows and uses nested for loops to print Floyd’s triangle.
C++ Program to print Floyd’s triangle
//C++ program to print Floyd's triangle
#include <iostream>
using namespace std;
int main()
{
int rows, num = 1;
cout << "Enter number of rows: ";
cin >> rows;
// outer loop is responsible for row
for(int i = 1; i <= rows; i++)
{
//inner loop is responsible for columns
for(int j = 1; j <= i; j ..read more
The Code Developer Programming Blog
4y ago
Are you looking for a solution how to disable Gutenberg and keep the classic WordPress editor on your WordPress site ? Now the Gutenberg is default editor in WordPress version 5.0. It simply means Gutenberg WordPress editor replaced the classic WordPress editor.
But still many WordPress users are not ready to use it and want to know how to keep the classic editor on my WordPress site? In this article we will explain you how to easily disable Gutenberg and keep the classic editor in WordPress.
What is Gutenberg?
Gutenberg is the project name for the new WordPress block ..read more