Select Page
Sparkline Charts using Chart.js

Sparkline Charts using Chart.js

Here is a demo with source code to create cool responsive sparkling charts for your website and web applications. DEMO See the Pen Sparkline chart by Puneet Sharma (@webdevpuneet) on CodePen. HTML <div class=”sparklineContainer”> <canvas...
OTP Input Complete User Interface

OTP Input Complete User Interface

OTP Input Complete User Interface Here is a working demo with HTML, CSS, and jQuery Script for the complete functional OTP user interface for you web pages. DEMO See the Pen OTP Input by Puneet Sharma (@webdevpuneet) on CodePen. HTML <div...

Commonly used hooks in React

Some of the commonly used hooks in React are: useState: This hook is used to manage state in functional components. It takes an initial value as an argument and returns an array with the current state value and a function to update the state. useEffect: This hook...

How to strip all tags inside a sting in php?

To strip all HTML tags inside a string in PHP, you can use the strip_tags() function with no second argument, or an empty string as the second argument. Here’s an example: $str = “<p>This is a <b>sample</b> string with <a...