Loops in PHP.

1. While, Nested While, Do While, and Nested Do While Loop in PHP (Click To Go) 1. For Loop and Nested For Loop in PHP (Click To Go)

Read more »

Operators in PHP.

1. What are Comments, Constant Variable, String Interpolation, Arithmetic and Assignment Operators in PHP (Click to Go) 2. Difference between Single Equal, Double Equal, Triple Equal, Not Equal, and Not…

Read more »

Statements in PHP.

1. Echo Statement, Print Statement, and Here document in PHP (Click to Go) 2. What are If, Nested if, if else and, Nested if else Statement in PHP (Click to…

Read more »

How to Create Virtual Host for Laravel Project on Xampp in Windows 10.

There are Two Changes is to done to Create Virtual Host for Laravel Project on Xappp in Windows 10. Just Follow the below Steps :- Step 1 :- Go to…

Read more »

How to Make Navigation from One Screen to Other in Flutter.

Navigation from One Screen to Other is pretty Easier, Just Follow the Below Steps :- Step 1 :- First of all, make two new files named home.dart and about.dart ….

Read more »

How To Create Your Own Widget In Flutter.

To Create your Own Widget in Flutter, Just Follow the Below Steps. Step 1 :- First of all, create a new file in lib directory named home.dart (you can write…

Read more »

How To Display ‘Hello World’ in Flutter.

To Display “Hello World” in Flutter, just Follow the Below Steps. Step 1 :- First of all, Import material.dart package library. import ‘package:flutter/material.dart’; Step 2 :- Now, we call our…

Read more »

Stateful Widget in Flutter.

Stateful Widget :- When user interacts with an App and the widget change then it is called Stateful Widget. A Stateful widget is Dynamic. For Example :- When user click on a…

Read more »

Stateless Widget in Flutter.

Stateless :- A Stateless widget has no internal state to manage. For Example :- Icon , IconButtons, Text , etc. Write Down the Below code in main.dart file.

Read more »

Stateful and Stateless widget in Flutter.

Stateful Widget :- When user interacts with an App and the widget change then it is called Stateful Widget. A Stateful widget is Dynamic. For Example :- When user click…

Read more »

Bitwise Operators in JavaScript.

Video Reference

Read more »

Comparison or Relational Operators in JavaScript.

1 . Less than ( < ) :- This operation will return TRUE when the expression will be satisfied and FALSE when not satisfied. See the Below Example var a…

Read more »

Logical Operators in JavaScript.

1 . Logical AND ( && ) :- In this operator, it returns a TRUE value only when both the conditions are true else it returns FALSE. See the below…

Read more »

Arithmetic Operators in JavaScript.

There are 7 operations can be done in Arithmetic Operators. These are 1 . Addition ( + ) :- This operation gives you the Added value. See the below example….

Read more »

JavaScript Operators.

Operators are the same in all Programming Languages but the way of writing code or using the operators are different. There are 5 types of Operators in JavaScript. 1. Arithmetic…

Read more »

How to install Git on Ubuntu/Linux.

To install Git on Linux/Ubuntu you have to Run the below commands Step 1 :- First check that your packages are updated or not : sudo apt update Step 2…

Read more »

HOW TO: INSTALL COMPOSER ON LINUX MINT

About Composer A composer is a tool for dependency management in PHP. It allows you to declare the libraries your project depends on and it will manage (install/update) them for…

Read more »

How to Delete data in Multiple Tables (with Relationship) Laravel.

To delete data from database with with relationship with two tables in Laravel we have to use the solution that I’ve used. Now, Question is Where and when we use…

Read more »

How to Add Sign-in with Facebook feature in Laravel.

In this tutorial, we’re going learn how to add authentication via Facebook to a Laravel app. In Short, How to add Sign-in with Facebook feature in our Laravel Project. For…

Read more »