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…
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…
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…
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()…
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…
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…
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…
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…
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…
Class & Object(php OOPS concept)
OOPS ( Object Oriented Programming System) Object means a real-world entity such as a pen, chair, table, computer, watch, etc. Object-Oriented Programming is a methodology to design a…