-
The Ultimate Guide to HTTP Status Codes
HTTP Status Codes HTTP Request Methods HTTP defines request methods to indicate the desired action for a resource. Here are the 9 important request methods: HTTP Status Codes Here is the complete list of HTTP status codes. 1XX Informational 2XX Successful 3XX Redirection 4XX Client Error 5XX Server Error 1XX Informational 2XX Successful 3XX Redirection…
-
Command Query Responsibility Segregation
CQRS Stands For : Command Query Responsibility Segregation. What is CQRS? CQRS is an architectural pattern that separates the concerns of reading data from the concerns of updating data, by having different objects handle reading and updating data. Okay, okayI will explain You Example From The Kitchen Conclusion By Separating the concerns of reading and…
-
What’s New in PHP 8.2
Introduction PHP 8.2 is a major update of the PHP language. It contains many new features, including readonly classes, null, false, and true as stand-alone types, deprecated dynamic properties, performance improvements and more. Read Only Classes You can now make the whole class as just read-only. Disjunctive Normal Form (DNF) Types DNF types allow us…
-
Javascript Arrow Function
What Is Arrow Function ? Arrow function is one of the features introduced in the ES6 version of JavaScript. It allows you to create functions in a cleaner and shorter way as compared to regular functions. Syntax :- In fact, if you have only one parameter you can skip the parentheses () as well We…
-
How To Link CSS File To HTML
There are three ways 1. Inline CSS Inline CSS contains the CSS property in the body section attached with element is known as inline CSS. Here 2. Internal CSS The internal style is defined inside the <style> element. inside the head section. Here 3. External CSS The external CSS defined outside HTML page with separate…