Sunday, August 13, 2017

Friday, July 14, 2017

Login & registration system using PHP, MySQL & Retrofit 2 library

I am going to create user login & registration system. I'll use PHP in backend & MySQL database. JSON response will be handled using retrofit 2 library. Let's start. First, lets create a database. First, create a database. I have named it as "jnklogreg". Then create a table with 4 column -...
continue reading Login & registration system using PHP, MySQL & Retrofit 2 library

Monday, July 10, 2017

Upload image to local server using retrofit

First, create a folder "uploads" in the desire directory. Our uploaded photos will be stored in this folder. Let's finish server side coding first. Create a file uploadImage.php . Here is the content of the uploadImage.php file : $folder = "uploads/"; $path = $_FILES['uploadimage']['name']; // $extension...
continue reading Upload image to local server using retrofit

Monday, June 5, 2017

Run ".sh" files in ubuntu.

So far there are multiple ways to run ".sh" files. Here I will note the easiest one, which is through GUI. So follow the steps below :     1. Right click on the ".sh" file & select properties.     2. Click on the "Permission" tab. Check "Allow executing file as program". Close the    window.     3. Now double click the file. A pop up window...
continue reading Run ".sh" files in ubuntu.

Friday, May 26, 2017

Saturday, March 25, 2017

Monday, March 13, 2017

Reverse a string using stack in java

In my previous post, I reversed a string in java. I'll do the same thing here using stack. Steps : 1) Declare an empty stack.               2) put the string elements in a character array.               3) Push every single character of the array into the stack.              ...
continue reading Reverse a string using stack in java