You Are Viewing Posts Under Category: HTML-CSS-PHP-JavaScript

How-To-Move-Data-Variables-From-JavaScript-To-PHP-And-Vice-Versa

How To Move Data/Variables From JavaScript To PHP And Vice Versa?

If you are a programmer looking to transfer data or variables between JavaScript and PHP, you have come to the right place. This article will guide you through the process of moving data seamlessly between these two programming languages. By the end of this post, you will have a clear understanding ...
How-To-Create-A-Complete-All-In-One-CURD-REST-API-In-PHP-MySQL

How To Create A Complete All-In-One CURD REST API In PHP MySQL?

Creating a CRUD (Create, Read, Update, Delete) API using PHP and MySQL is a fundamental skill for web developers. A CRUD API allows you to interact with a database to perform these essential operations, enabling you to build dynamic and data-driven web applications. In this article, we’ll guide yo...
Design-A-Simple-Hamburger-To-Cross-Animation-Menu-Icon-Using-CSS

Design A Simple Hamburger To Cross Animation Menu Icon Using CSS

This code creates a hamburger-to-cross animation in CSS. The HTML sets up a navigation button, while the CSS styles the button and defines the animation properties. The JavaScript adds interactivity, toggling the ‘opened’ class on the button click, triggering the animation. Useful for enhancing ...
How-To-Use-Custom-PHP-Version-In-A-Selected-Directory-Folder

How To Use Custom PHP Version In A Selected Directory/Folder?

The PHP version is important not only for speed and performance. There are different applications, which sometimes may require specific PHP versions. All shared hosting clients can set specific PHP versions for different directories. For example, if you want to run PHP 7.4 on your account, but you ...
How-To-Customize-Radio-Buttons-And-Checkboxe-Buttons-With-Pure-CSS

How To Customize Radio Buttons And Checkboxe Buttons With Pure CSS?

There are so many tutorials on the internet which help you to create custom checkboxes and radio buttons, but almost all of them use JavaScript or jQuery, which is totally redundant nowadays. If you want to give radio buttons and checkboxes a custom style but only want to use HTML and CSS (so no Jav...
How-To-Create-A-Double-Input-Range-Slider-Using-JavaScript

How To Create A Double Input Range Slider Using JavaScript?

In this tutorial we’ll be coding a double range price slider. While HTML does have a native range slider input this isn’t suitable for when a double range selection is required (min and max). So to achieve the desired functionality some creative CSS and JavaScript is required. There are many cod...
Before-After-Image-Slider-Using-Mouse-Drag-In-Pure-Vanilla-JavaScript

Before After Image Slider Using Mouse Drag In Pure Vanilla JavaScript

This Vanilla JavaScript code snippet helps you to create before and after image comparison sliders. It comes with scrolling and touch support to slide the vertical slider over the image to see the before and after differences. There are many code snippets available online or on many other blogs and ...