The problem is that when I do a search, I get a result but it is not visualized in the way I expect.
When I make the query on the local server, it gives me the expected result:
SELECT TABLE_NAME FROM 'INFORMATION_SCHEMA'.'TABLES' WHERE TABLE_NAME = 'pagos';
+------------+
| TABLE_NAME |
+------------+
| pagos |
+------------+
1 row in set (0.66 sec)
The same query now in phpMyAdmin where I have my site:
SELECT TABLE_NAME FROM 'INFORMATION_SCHEMA'.'TABLES' WHERE TABLE_NAME = 'pagos'
+----------------------------------------------------------------+
| TABLE_NAME |
+----------------------------------------------------------------+
| sql.php?table=pagos&token=78563b6e7a9ac860275976a5c2c841f5 |
+----------------------------------------------------------------+
The query is well done because obviously it gives me the same result but I do not understand why the url throws at me and not the name of the table.
The following image exemplifies the error that I have, not only in the column TABLES.TABLE_NAME
This same problem I have in the other tables
INFORMATION_SCHEMA.TABLES
INFORMATION_SCHEMA.COLUMNS
I do not know if it's a serious problem, or very simple, but I've been slow to find a solution, so much so that I'm thinking about deleting the entire database and creating another one, maybe that will solve it. But it is not so easy for me to take the simple path and stay with the doubt of the possible solution.
I hope you can support me as on other occasions.
Thanks in advance