Web Development

top 6 must have wordpress plugins
Top 5 must have wordpress plugins

Today we will be taking a look at the top 5 must have WordPress plugins for every WordPress website and these are the plugins I personally use and recommend. Personally I think they are the first thing every blogger should download for every new WordPress website that they create. Now with that…

Loading

Difference between include() and require() function in PHP 7
Difference between include() and require() function in PHP 7

Basically, Difference between include() and require() function in PHP 7 is only one has the fatal error and another one has warning error. but the more basic difference is given below: <?php // include(“worker.php”); ?>   <?php require(“worker.php”); ?>   First up, neitherinclude requirefunctions, they are constructs. It is therefore not necessary to call them using…

Loading

FizzBuzz in js
How to create FizzBuzz in Javascript

FizzBuzz in js is a basic program to make the beginners better understanding of their own code. using this you can learn how the code actually works. here are two methods in javascript to create FizzBuzz. Using the Function using for Loop Q: Write a program that uses console.log to print all the numbers…

Loading

1 2 3