You will need to make a HTTP request, refer to links below on how to do this.
Make an HTTP request with android
Send data from android to server via JSON
On the php server side you will need to set it up to get the questions from the database and then using the information in the links above send it back to the tablet.
Then you will need to take the data from the http request and update the textviews to the questions. you can do this with :
String stg = yourHTTPData;
TextView tv = (TextView) getViewById(R.id.tv);
tv.setText(stg);
The textViews can be made in the java code or in an android XML file. I recommend using two different activities for the first and second screen.
Here is a good youtube playlist that helped me start when learning, it is in english but you should pick up enough to learn how to do everything :) https://www.youtube.com/course?list=ECB03EA9545DD188C3&feature=plcp
Hope this helps a little. I have made somthing similar at home (I am away from home at the moment) so if you want more code snippets then ask and I will put them up tomorrow :)