Android Question How to login web server

DickyNAS

Member
Licensed User
Longtime User
Before entering main layout page, I want to check user's username and password from phpMyAdmin for permission in login layout page

How to implement this task by POST method.
 

Erel

B4X founder
Staff member
Licensed User
Longtime User
phpMyAdmin is a tool to manage MySQL databases. You want to check the user name and password with the database, not phpMyAdmin.

There are several options to connect to a remote MySQL database. You can use the PHP based solution or RDC. Or you can use one of the jdbc based libraries.

Search the forum for MySQL or remote database.
 
Upvote 0
Top