In this blog, I’ll show how to upload and display an image with both JavaScript and PHP. Please follow these steps. Step 1 First make a folder named, “upload-image”. Under “upload-image”, create another folder for the image, named “image” where my image will show after upload. Step 2 1. Create a file named, “index.php” […]
How to create a simple puzzle game in java?
One quite useful way to view mathematical puzzles is as games where only one person (the person playing the game) makes moves. We can borrow all the theoretical tools to learn the theory of games to research puzzles. For instance, we can use the same backtracking algorithm that proves that there is a winning strategy […]
Top Reasons for using React Native for mobile apps development
React Native is a JavaScript framework that is used for creating native mobile applications for iOS and Android. It is built on React, Facebook’s JavaScript library for building user interfaces. It targets mobile platforms, instead of targeting the browser. Mobile app developers can now write mobile applications that look and feel truly “native”, all from the […]
Cloud Firestore in Android: How does it work?
Cloud Firestore is a cloud-hosted, flexible, scalable NoSQL database used for mobile, web and server development from Firebase and Google Cloud Platform and can be accessed directly via native SDK’s. This Cloud Firestore is also used for native Node.js, Java, Python, and Go SDKs, in addition to REST and RPC APIs. In Cloud firestore, data can […]
How to Generate PDF Documents in WordPress using CPT and ACF
WordPress allows us to easily generate PDF files and make them available for download. In this blog, I’ll explain how to simply create and open the PDF files with CPT and ACF in the WordPress site. Create ACF Field Advanced Custom Fields is a WordPress plugin which allows us to add extra content fields to our WordPress. Please […]
Solution Of Concurrent Exception In JAVA (Android)
Hello guys! We all know about a Collection named ArrayList. You can find this class in java. This class belongs to the package “package java.util;”. We can store any kind of values inside this class and can sort, reverse accordingly. But you will face a problem while sorting with respect to any class with the […]
5 advanced CSS tricks that every designer should know
The CSS technology has opened a whole new gateway for the web and mobile app designers. But, do you think you know the complete feature of the CSS technology? There is an ocean of tricks hidden in the CSS technology. Learning about those hidden tricks can take you ahead of your competitors in every aspect. […]
Easy And Helpful Steps Of Creating A New Branch With Git
When you do a pull request on a branch, you’ll be able to still work on another branch and create another pull request on this other branch. Before creating a completely new branch, pull the changes from upstream. Your master needs to be up to date. $ git pull Create the branch on your native […]
Learn The Best Way of cropping image by using Javascript Library
If you ever get stuck in a situation where you have to crop an area of an image like a circle or like a square or maybe a rectangle area in a web application then there’s a way of achieving that by using a Javascript library or plugin called Croppie. It is fast, and you will get a lot of configuration options to customize it as you need. If I can […]
LEARN ABOUT JSON ENCODE AND DECODE IN PHP
JSON is basically used when we want to send back data to the client server. JSON ENCODE means if the data type is in array format then it actually turns into JSON OBJECT, and JSON DECODE is vice versa to the JSON encode. here I can show you a small example of JSON ENCODE $data […]