How to place two bootstrap cards next to each other ?
Bootstrap is the most popular, free, and open-source HTML, CSS framework that is used to make a responsive website and make them beautiful. It provides various classes to work with that can be used to make a website beautiful. It also provides classes for creating cards....
read more
Implementation of Priority Queue in Javascript
Priority Queue is an extension of Queue having some properties as follows:...
read more
How to Create and Verify JWTs with Node?
In this article, we will see how to create JWT tokens in Node.js. We will implement secure authentication in Node.js by creating and verifying JSON Web Tokens (JWTs) using libraries like `jsonwebtoken`....
read more
How to create a PHP form that submit to self ?
Forms can be submitted to the web page itself using PHP. The main purpose of submitting forms to self is for data validation. Data validation means checking for the required data to be entered in the form fields. PHP_SELF is a variable that returns the current script being executed. You can use this variable in the action field of the form. The action field of the form instructs where to submit the form data when the user presses the submit button. Most PHP pages maintain data validation on the same page as the form itself. An advantage of doing this is in case of a change in the website structure, the data validation code for the form, and the form remain together.Code Snippet:...
read more
How to Sort Numeric Array using JavaScript ?
In JavaScript, where arrays and their manipulation form the backbone of many operations. One such operation is sorting, and JavaScript provides a built-in method, Array.sort(), to help us with that....
read more
JS Full Form
...
read more
How to create a progress bar using HTML and CSS?
The progress bar is an important element in the web, the progress bar can be used for downloading, marks obtained, skill measuring unit, etc. To create a progress bar we can use HTML and CSS. To make that progress bar responsive you will need JavaScript.In this article, we will learn to create progress bars using HTML and CSS....
read more
What is callback hell in Node.js ?
To know what is callback hell, we have to start with Synchronous and Asynchronous Javascript....
read more
What are the differences between an Annotation and a Decorator in Angular?
Although Annotations and Decorators both share the same @ symbol in Angular, they both are different language features....
read more
Difference between SVG and HTML 5 Canvas
SVG (Scalable Vector Graphics) is an XML-based vector image format, suitable for creating graphics and interactive elements. HTML5 Canvas is more like a blank canvas where you can draw whatever you want using pixels. SVG is great for logos and icons, while Canvas is good for dynamic animations and games....
read more
PHP Form Processing
In this article, we will discuss how to process form in PHP. HTML forms are used to send the user information to the server and returns the result back to the browser. For example, if you want to get the details of visitors to your website, and send them good thoughts, you can collect the user information by means of form processing. Then, the information can be validated either at the client-side or on the server-side. The final result is sent to the client through the respective web browser. To create a HTML form, form tag should be used....
read more
ReactJS Methods as Props
In this article, we will learn about props and passing methods as props. We will also discuss how we can use the child components to pass data to parent components using methods as props....
read more