An open API service indexing awesome lists of open source software.

https://github.com/dhn-nys/loginapi

Implementation Server Client PHP(MySQL) and Android. Case Stud: Login Service In PHP And MySQL For Android Applications
https://github.com/dhn-nys/loginapi

android android-applications api case-stud login login-api loginapi mariadb mysql php sql

Last synced: about 2 months ago
JSON representation

Implementation Server Client PHP(MySQL) and Android. Case Stud: Login Service In PHP And MySQL For Android Applications

Awesome Lists containing this project

README

          



Header

Implementation Server Client PHP(MySQL) and Android Case Stud: Login Service In PHP And MySQL For Android Applications

## Need

GNU / Linux
- [Apache](https://directory.apache.org/studio/download/download-linux.html) or [Nginx](http://nginx.org/en/linux_packages.html)
- [PHP](https://www.php.net/manual/en/install.unix.debian.php)
- [PHP-fpm](https://php-fpm.org/)
- [Mysql](https://dev.mysql.com/downloads/os-linux.html) or [Mariadb](https://downloads.mariadb.org/)

Windows
- [XAMPP](https://www.apachefriends.org/download.html) or [Laragon](https://laragon.org/download/index.html)

## Demo
[Visit](http://dhnnys.000webhostapp.com/P9/)

## Qna
1. why I can't connect to my localhost and database:
```
$conn = new mysqli('localhost', 'izu(change you user databases)', 'toor(change you password database)');
mysqli_select_db($conn, 'db_member');
```
2. why I can't connect to my table database:
```
$getData = "SELECT `ur_Id`,`ur_username`,`ur_password` FROM `tbl_user(this is table name you can change)` WHERE `ur_username`='" .$email."'
and `ur_password`='".$password."'";
```
## Thanks 💙
- [Nirav Daraniya](https://www.c-sharpcorner.com/article/login-service-in-php-and-mysql-for-android-application/)