I have two tables from my DB which were retrieved with the following MYSQL SELECT statement:
SELECT table_schema AS database_name,
table_name
FROM information_schema.tables
WHERE table_type = 'BASE TABLE'
AND table_name LIKE 'cu%'
ORDER BY table_schema,
table_name;
My goal is to get the values from these two tables and export them to HTML tables (one HTML table for each corresponding returned table) via PHP PDO. The tables have been returned but how can I access the rows?