jQuery Syntax!

The jQuery syntax is tailor-made for selecting HTML elements and performing some action on the element(s). Basic syntax is: $(selector).action() A $ sign to define/access jQuery A (selector) to “query (or find)” HTML elements A…

Read more »
Jquery

What is jQuery? A Brief Look!

jQuery is a fast and concise JavaScript Library created by John Resig in 2006 with a nice motto: Write less, do more. jQuery simplifies HTML document traversing, event handling, animating, and…

Read more »
Everything about js Object

Objects in java-script explained!

Objects are used to store keyed collections of various data and more complex entities. In JavaScript, objects penetrate almost every aspect of the language. So we must understand them first…

Read more »

What is JavaScript – All You Need To Know About JavaScript

What is JavaScript? ” JavaScript is a high level, interpreted, programming language used to make web pages more interactive.  “ JavaScript is a scripting language used to create and control dynamic website content,…

Read more »

How to store and retrieve image from the database in Laravel.

# Creating Migration For Uploading Image We need to add three lines in our migration file which makes column in our Database .After adding, run Migration . # Blade Form…

Read more »

Generate URLs to Named Routes in Laravel

Laravel Provides several helpers to assist you in generating URLs for your application. These are mainly helpful when building links in your templates and API responses, or When generating redirect…

Read more »

How to remove YouTube add in one click!

YouTube is a massive platform that features a truly staggering amount of online video content. Whatever type of entertainment you’re looking for, there’s a good chance that you’ll find a decent supply…

Read more »
Complete Reference Guide

Complete reference guide of PHP Web Programming!

About Web Programming With PHP This website is designed to serve as a first course in undergraduate web application programming in computer science curriculum. Besides the basic concepts of web…

Read more »
Complete Reference Guide

Complete reference guide of PHP Databases!

PHP MySQL Introduction MySQL is one of the most popular relational database system being used on the Web today. It is freely available and easy to install, however if you have installed…

Read more »
Complete Reference Guide

Complete reference guide of PHP Operators & Control Structures!

What is Operators in PHP Operators are symbols that tell the PHP processor to perform certain actions. For example, the addition (+) symbol is an operator that tells PHP to…

Read more »
Complete Reference Guide

Complete reference guide of PHP Classes & Objects !

What is Object Oriented Programming Object-Oriented Programming (OOP) is a programming method that is based on the concept of classes and objects. As known to procedural programming where the focus…

Read more »
Complete Reference Guide

Complete reference guide of PHP Arrays!

What is PHP Arrays Arrays are complex variables that allow us to store more than one value or a group of values under a single variable name. Let’s suppose you…

Read more »
Complete Reference Guide

Complete reference guide of PHP Strings!

What is String in PHP A string is a sequence of letters, numbers, special characters and arithmetic values or combination of all. The simplest way to create a string is…

Read more »
Complete Reference Guide

Complete reference guide of PHP Functions!

PHP Built-in Functions A function is a self-contained block of code that performs a specific task. PHP has a huge collection of internal or built-in functions that you can call…

Read more »

Eloquent-sluggable in laravel Installation failed? (Solution)

Conclusion: don’t install laravel/framework v5.7.9 cviebrock/eloquent-sluggable 4.8.x-dev requires illuminate/config ~5.8.0 -> satisfiable by illuminate/config[5.8.x-dev Solution:- Depending on your version of Laravel, you should install a different version of the package. NOTE:…

Read more »

Useful Visual Studio Code Extensions.

1 :-Visual Studio Code HTML Snippets This extension adds rich language support for the HTML Markup to VS Code, including: Full HTML5 Tags Colorization Snippets [partially implemented] Quick Info description…

Read more »