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
- Host: GitHub
- URL: https://github.com/dhn-nys/loginapi
- Owner: Dhn-nys
- Created: 2020-11-22T07:03:42.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2020-11-23T06:34:27.000Z (over 5 years ago)
- Last Synced: 2025-10-25T02:19:00.022Z (8 months ago)
- Topics: android, android-applications, api, case-stud, login, login-api, loginapi, mariadb, mysql, php, sql
- Language: PHP
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
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/)