Hi all I'm trying to build an array I've got it as I wanted until I decided to add ability to ad images/files.
I'm trying to build on an existing array for multiple files & i'm having a brain fart. please help. :confused:

here's how i'm building the array now:
// Pull all the post to display
$sql = "SELECT *
        FROM complaint
        ORDER BY c_time DESC
        LIMIT 20";


$result = $db->sql_query($sql);

// build the array for display
while($thisdata = $result->fetch_assoc())
{...
PHP:
Not sure if php loop or mysql join call to build an array

from PHP https://ift.tt/3nk7gqc
via IFTTT