A questionnaire web app is a website that allows users to answer questions based on the best of their knowledge in a limited time. The user who answered the most questions right comes 1st, then 2nd, and 3rd. Users also have the capability to ban another user. The user having the highest negative votes will …
Read More “Questionnaire web app – Node JS and Mongo DB”
Local storage means the data that is stored inside the app. You do not need an internet connection to create or read data from local storage. We will create a simple iOS app in Swift UI that allows you to create, read, update, and delete values in local storage. For that, we are going to …
Read More “Local storage Swift UI – CRUD”
We will create a text field in one view and send its value into another view. We will be taking an example of a search, you write a text to search in one view and the second view will show you the text you had written on the first view. Note: When implementing a complete …
Read More “Send value from one view to another – Swift UI”
To show an alert with callback in Swift UI, you need 3 things: Video tutorial: So let’s go ahead and create these 3 variables in your view: When the variable becomes true, an alert will be displayed with a title and a message.
You won’t be able to preview your layout in your XCode preview in Swift UI when you are receiving data from the server. So we are going to show you how you can preview the layout with the data from your API. Video tutorial: API to return JSON data First, create an API that will …
Read More “Show API data in XCode preview – Swift UI”
We will create a simple iOS app in Swift UI that will call an API request, developed in PHP, to the HTTP server. The API will return an array of records in JSON format, which we will decode in Swift class objects as an array. Then we will display that list in a list view. …
Read More “Get data from API and show in list – Swift UI, PHP”
Learn how to upload image from SwiftUI app. We will not be using any external library in this tutorial. All code is done in native SwiftUI. We will use a picker from an iPhone gallery and upload it to your server. We will be using SwiftUI for developing the app and PHP for uploading the …
Read More “Pick image from gallery and upload to server – SwiftUI and PHP”
In this article, we will be creating logged in devices management feature that will allow the users to check how many devices they have been logged in. You might have seen this feature in Facebook where you can see a list of all devices where you have been logged in, and you also have the …
Read More “Logged in devices management – PHP & MySQL”
Let’s say you have an admin panel of your website where you can manage your website’s data. Now you want to have a functionality where you can create sub-admins with access to limited features. For example, one admin can manage posts (add, edit and delete), another admin can manage customers, another admin can manage employees …
Read More “Admin roles in admin panel – PHP & MySQL”
In our previous post, we gave a detailed explanation of why you need a database viewer if you are working with only FTP or SFTP. In this post, we will create a phpMyAdmin for developers who have access to FTP or SFTP only while working on a Laravel project. Let’s get started First, you need …
Read More “phpMyAdmin for FTP or SFTP – Laravel”