How to get All Table Name in a Database in MySQL Database

I Want To Know How to get All Table Name in a Database in MySQL Database ???

Did you read this guide?

Have a look into it

There is a table inside your database that has all these names.
INFORMATION_SCHEMA

Or show tables

But I Want To Get Table Names Dynamically As a Category Name in my Admin App and Set The Data From Admin App …and It Will Update on User App Automatically…

Read

To know about the tables in the database
https://dev.mysql.com/doc/refman/8.0/en/information-schema.html

Hugs