I have a form where people can submit any and all kinds of MySQL queries and as I am now moving from MySQLi to PDO I am wondering if there is any way to deal with multiple query results using PDO. So let's say that a user submits the following to the PDO query method via an HTML form:
SELECT * FROM `organisation`.`employee`;
SELECT * FROM `organisation`.`salary`;
Is there a way to deal with both results?