Permission for Yii2 Development in UBUNTU 16.x
sudo useradd -G www-data $USER sudo chown -R $USER:www-data /var/www sudo chmod -R g+rwX /var/www
sudo useradd -G www-data $USER sudo chown -R $USER:www-data /var/www sudo chmod -R g+rwX /var/www
Simple pagination code for PHP developers. Step 1 :Create database name “pagination” in mysql using phpMyadmin.-- -- Table structure for table `exclusive_news` --CREATE TABLE `exclusive_news` ( `id` int(2) NOT NULL, `post_id` int(6) DEFAULT NULL, `date` varchar(25) CHARACTER SET latin1 NOT NULL, `title` longtext CHARACTER SET utf8 COLLATE utf8_general_mysql500_ci NOT NULL, `content` longtext NOT NULL, `media` varchar(500) CHARACTER SET latin1 NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf16; orStep 2 :import the sql file from db folder of project to database with...
Step 1:create new application on Android Studio 3.0 Create GUI textView, button and progress bar Add some external library create kotlin data class define your webservice url in MainActivity.kt add internet uses permission your mainfest.xml fileMainActivity.kt package com.iotwebplanet.learn.myapplication1import android.os.Bundle import android.support.design.widget.FloatingActionButton import android.support.design.widget.Snackbar import android.support.v7.app.AppCompatActivity import android.support.v7.widget.Toolbar import android.util.Base64 import android.view.Menu import android.view.MenuItem import android.view.View import android.widget.Button import android.widget.TextView import java.net.HttpURLConnection import java.net.URL import android.os.StrictMode import android.widget.ProgressBar import com.beust.klaxon.* import com.github.salomonbrys.kotson.fromJson import com.google.gson.Gsonclass MainActivity : AppCompatActivity() {public fun parse(name: String):Unit { val cls = Parser::class.java ...
Here is i am describing how to transfer variable or value from one Activity to Another Activity in Android Application.I am using Android Studio 3.0.I hope my code will help you. You can use this code in button event or any other place where it is required.Set Data in Activity val myvalue="I am from Main Activity" val myActivity = Intent(applicationContext, Another_activity::class.java) //name of activity to launch myActivity.putExtra("value",myvalue) // value will save of your myvalue variable used for another activity ...
Hi Developers as we always juggle with findViewById() in Android activity class . Some time we forget to typecast xml into Kotlin or java . So good news for Kotlin android developer.