Get data from PHP and MySQL in Android Java

In this tutorial, we will teach you how you can get data from database using PHP and MySQL in Android Java. We will be using Volley for sending HTTP request. Following will be the structure of users table from where we will fetch data. You can add more fields as per your need. Important thing …

Upload android gallery image to PHP, MySQL – Java

In this article, we will show you how you can upload image from your android gallery to PHP server. Introduction We will create a profile page in an android application where we wil display the user profile picture, name and a submit button. You can also display other fields as per your project. And when …

User registration in Android, Java, PHP, and MySQL

User registration is used in almost every android app today. We will create a registration form in an android application using Java. And when the form is submitted, we will send an HTTP request from android to the PHP server that will save the user’s data in the MySQL database. MySQL table structure Following will …

UIDatePicker timezone fix – Swift iOS

UiDatePicker in Swift has some timezone issues, so we will teach you how you can fix it. Convert time to different timezones If you are working on UIDatePicker in your Swift project, you might come across a problem that when fetching the value from UIDatePicker it usually returns the value by mapping with your timezone. …

Easy way to save the class object in user defaults – Swift iOS

When it comes to saving the class object in user defaults, there is a hard way to do using NSKeyedArchiver class. But there is an easy to do using JSONEncoder and JSONDecoder classes. In this tutorial, we will teach you how you can: First, create a model class in Swift which will be the class …

How to export and download CSV in Node JS

Learn how to export and download CSV file in Node JS. Video tutorial: First, we create a folder and open the command prompt or terminal in it using the following command: Then you can initialize the NPM by running the following command: Then you can install the required modules: We will be using express as …

Social Networking Site in Node JS and Mongo DB

The social networking site is a project developed in Node JS, and Mongo DB. It has all the functionality that you need to build a social network for your local community. A social networking service is an online platform that people use to build social networks or social relationships with other people who share similar …

Video streaming web app in Node JS and Mongo DB, MySQL

This project is available in 2 versions: We created a video streaming web app in Node JS and Mongo DB and also in MySQL. Features Authentication User can create an account using his first name, last name, email and password. Passwords can encrypted so even if your database gets hacked, user’s passwords will not be …

A blog website with admin panel in Node JS and Mongo DB

We have created a blog website with admin panel in Node JS and Mongo DB. It is designed in Bootstrap. And the view engine is EJS. Version 1.6 Features: File manager File Manager allows you to manage all your uploaded files in one directory. You can simply go to the admin panel and then “File …