Okay, here\'s what I\'m trying to do. I am running a MySQL query for the most recent posts. For each of the returned rows, I need to push the ID of the row to an array, then wit
here you have the complete reference for arrays, anyway a common way to do this is to use $myarray[] = $aa; to "push" into it.
$myarray[] = $aa;