I have a query in the database that returns the records in an array, I would like to know how to manipulate these records, get them out of the array.
Code
$array = MinPDO::consult("intro", NULL, "id > 1", "id-", "3", "%e%");
var_dump($array);
Records
array(3) { [0]=> array(3) { ["id"]=> int(3) ["param1"]=> string(5) "ele01" ["param2"]=> string(6) "param2" } [1]=> array(3) { ["id"]=> int(2) ["param1"]=> string(5) "ele01" ["param2"]=> string(6) "param2" } [2]=> array(3) { ["id"]=> int(1) ["param1"]=> string(5) "ele01" ["param2"]=> string(6) "param2" } }