I'm creating a simple android application, it requires some details to stored and retrieved from a web service coded in php. I have planned to create PHP script like www.mycoolservice.com/domagic.php Android App will request the script some details via HTTP POST and the script will send the data using json encoding.
My question is about authentication and security
Which is the best way to authenticate a user with the server,should i send the username and password with every HTTP POST(encrypted)?
Also if there are large number of users using the same script at a time,will there be some concurrency and efficiency issues?
I'm just a beginner to web services, please guide me.