If I have a MySQL query that looks like this:
SELECT Content FROM AP_Data WHERE Title='Featured' or Title='Carousel'
Is it possible to use PHP to then turn the variables into something like
echo $Row['Featured']['Content'];
echo $Row['Carousel']['Content'];
I hope that by doing this, I can save time without bombarding the server with multiple queries. This is only a snippet of the queries I require.