PHP

In this video tutorial I am going to share with you how to create a UISegmentedControl with three tabs which will allow user to switch between three different list of elements: Private, Protected and Public. List of items displayed in each tab is loaded from a remote PHP script. I will include the source of PHP…

Read More UISegmentedControl with UITableView example in Swift. Part 2.

In this video tutorial I am going to share with you how to create and use UICollectionView in Swift. Here is what we are going to cover: Create a new UIViewController with UICollectionView Implement custom UICollectionViewCell Load list of images by calling a server side PHP script which will return a JSON array of images Display…

Read More UICollectionView example in Swift

In these 3 videos I am going to share how to implement case insensitive search with Swift, PHP and MySQL. I am going to use UISearchBar to let user type their search word and then send HTTP POST request to a server side PHP script which will connect to MySQL database and will perform SELECT…

Read More Case Insensitive Search with Swift, PHP and MySQL

For the past couple of weeks I was working on a new video course which explains how to implement User Sign in, Sign up, Sign out, Email verification, Forgot password, Profile image upload and more with Swift, PHP and MySQL. The new video course is now being uploaded to Udemy and once it is approved I…

Read More Email Verification Feature with Swift, PHP and MySQL

In this video tutorial I am going to share how to upload an image and display the upload progress using the UIProgressView. I am going to use UIImagePickerController to let user select one of the images on their device I will use NSMutableURLRequest to send HTTP POST request with image data to a server side PHP script…

Read More Image Upload with Progress Bar example in Swift

In this example I am going to show you how to send an HTTP POST Request to a server side script written in PHP. I have prepared a very simple PHP script that accepts two parameters, puts them into an array and outputs response in a JSON format. <?php // Read request parameters $firstName= $_REQUEST[“firstName”];…

Read More Send HTTP POST Request example using Swift and PHP