el reporte podria ser algo asi:
Código PHP:
$sql = mysql_query("SELECT a.id,a.nombre,a.precio,a.existencia,b.id_prod,b.imagen FROM productos a,imagenes b WHERE a.id=b.id_pro");
echo "<table>";
while($row = mysql_fetch_array($sql)){
echo "<tr>";
echo "<td>".$row['imagen']."</td>";
echo "<td>".$row['nombre']."</td>";
echo "<td>".$row['precio']."</td>";
echo "</tr>";
}
echo "</table>";