XAMPP error (not loading your local site)

If your local site not loading to browser then it might be .htaccess error 1st step: GOTO the .htaccess file and remove this lines of code. 2nd…

Read More

NOT Found the request URL was not found(laravel)

When ever you got error as a Not found URL 1st step:- Turn off the XAMPP server (apache, mySQL) 2nd step: GOTO this path GOTO –> C:\xampp\apache\conf\extra\httpd-vhosts.conf…

Read More

Targeting methods in Javascript (querySelector)

querySelector       document.querySelector(CSS Selector) querySelectorAll  document.querySelectorAll(CSS Selector) querySelector()  The querySelector() method returns the first Element within the document that matches the specified selector, or group of selectors. It…

Read More

JAVASCRIPT METHODS

length // it is a property toLowerCase() toUpperCase() Includes() startsWith() endsWith() search() match() indexOf() lastIndexOf() replace() trim() charAt() charCodeAt() fromCharCode() concat() Split() repeat() slice() substr() substring() toString()…

Read More

Array in JavaScript

What is array? In JavaScript, the array is a single variable that is used to store different elements. It is often used when we want to store…

Read More

JavaScript DOM(Document Object Model)

DOM is such a technology with the help of which we can completely control any html document with JavaScript. With the help of DOM we can access…

Read More

Laravel photo/picture issue

Your Picture Going to DataBase also in file location (C:\xampp\htdocs\folderName\MainFile\storage\app\public\images ) but on screen it is not showing Picture Then might be your file not linked to…

Read More

Inheritance in PHP(OOPS Concept)

Inheritance :- When a class derives from another class. The child class will inherit all the public and protected properties and methods from the parent. An inherited…

Read More

How to Change VScode title name

first we have to open VScode(Visual Studio Code ) for this go to the setting option which is located in your down side left corner. Then you have…

Read More

CSS Positions Static, absolute, relative, fixed and sticky

There are five types of position property : static relative absolute fixed sticky static: Static positioned elements are not affected by any attribute like top, bottom, left,…

Read More