I may be in weekend mode, but how would showing multiple images work with the first code given? $id and $tile would always end up being the values of the last element (i.e. they'd be overwritten with every loop).
For the second try in #3: Still the results are overwritten with every loop. Try something like that:
PHP Code:
$imageresults = array();
$imageresults['imageid'] = $row['imageid'];
$imageresults['imageid']['title'] = $row['title'];
$imageresults['imageid]['filename'] = $row['filename'];
The imageid in the multidimensinal array keeps the values from being overwritten.
Then, indeed, do a vb:each in the template.