I have three activities in android studio!The first holds the password and email EditTexts,the second holds a button 'pause'.The third activity holds a text. How to get the values of email and password when I click the button pause on second screen using php script?I am using a MYSQL database and a table inside of this database with email,password and pause.
May be you are looking for passing data from one activity to another. You can do that like below
Intent foo = new Intent(currentActivity.this, secondActivity.class);
foo.putExtra("Email", mail);
startActivity(foo);
If you want to save on a database you can use volley package for GET and POST data from and to a server. I hope you are looking for the first one.