Before updating ReactNative version to 0.81.5 from 0.77 the following code to navigate bewteen screens stopped working. const { navigation } = props; navigation.navigate( ‘Gift Codes’ ) The Gift Code screen was a part of different navigation stack named BottomTabNavigator…
Slick Slider WordPress Without Plugin | Slick Carousel
The Slick Slider library is a solid option for displaying slideshows on your website, and my go-to solution the majority of the time. In this post, I’ll show you how to set it up for your next project. Being a…
Using Context API to create text alert or notification at the top of a page
In modern React applications, showing success or error messages after a user action (like form submission or data saving) improves the user experience.Instead of repeating the same notification code in every component, we can centralize it using React Context API…
Convert image file to text using Google Drive
There are various online tools or methods to convert image file to text. By converting image into text I mean by extracting all the text that is visible in an image and converting into text string. For example, look at…
Using @ alias in React for cleaner React and TypeScript imports from various paths
React along with TypeScript is a wonderful tool for building scalable, maintainable, modern web applications. React + TypeScript is very popular among developers. In this post we will see the use of Aliases in React+TypeScript+Vite(optional). To follow along with this…
Deploying Next.js Application with Nginx on Ubuntu – 2025
Next.js is a popular React framework which enables developers to build user-friendly web applications and websites. It come with inbuilt file/folder name based routing to jetpack developers into the code part directly. Next.js simplifies the process of creating both static…
PHP Magic Methods
PHP Magic methods are special methods that begin with double underscores (__) and are automatically triggered by specific actions within your code. These methods allow you to define powerful and dynamic behaviors in your classes. In this article, we’ll cover:…
PHP and JSON: Encode, Decode, and Handle JSON Data
JSON (JavaScript Object Notation) is a lightweight data format that’s perfect for exchanging information between a client and a server—and it plays especially well with PHP. Whether you’re working on an API, handling AJAX requests, or storing structured data, PHP…
How to Create a Simple Form and Handle Form Data in PHP
PHP helps to create a simple form and handle form data. PHP allows you to collect and process form data submitted by users through HTML forms. Follow the steps below to create and handle a simple form in PHP 1.Create…
How to Connect PHP with MySQL Database
Connecting PHP with a MySQL database allows you to store, retrieve, and manage data easily for your web application. Follow the steps below to connect PHP with MySQL: 1.Create a database First, create a database using PHPMyAdmin or the MySQL…