To have a bank in phpMyAdmin do you need the bank in Mysql? [duplicate]

1

Hello, I would like you to help me in an issue, my code connects to my bank that is in phpMyAdmin, and in some places I have read, I have verified that it is a bank manager. My question and doubt are exactly the title. Is it possible to have a bank in phpMyAdmin without having a bank in Mysql?

    
asked by anonymous 30.08.2017 / 21:54

1 answer

1

You must understand that PHPMyadmin is not a SQL language, but an interface for handling the SQL language. (In the Mysql case)

MySQL is something quite different, not the panel, but a DBMS. MySQL which is the database, not PHPMyAdmin.

Think of a doctor, it is not a medicine, but it is the means to get to the medicine.

PHPMyAdmin is not the database, but it is the way to get to the database.

Soon, the answer to your question:

It is not possible to have PHPMyAdmin without MySQL. But it is possible to have MySQL without PHPMyAdmin.

    
31.08.2017 / 03:36