I have to create a simple android app that has login function with php and mysql. I followed this tutorial https://www.androidhive.info/2012/01/android-login-and-registration-with-php-mysql-and-sqlite/ and everything is fine.
But problem is the PHP part of this tutorial use plain PHP. Now I want to use PhalconPHP to do that job (because we use Phalcon to create our web client, so I want to use the same technology).
I don't know what is the project structure for a web service with Phalcon, is it similar to MVC web client? And if I want the string query like "https://example.com/api/index?username=test&password=test" what I have to do with Phalcon?
Thank you very much