How to print redux gallery feilds id? [closed]

Ok, That was so nice for me. I and my mate solve the problem.

We got the images ids and put into it in a var. That was array so we put it in explode function so that we break the string into an array, and finally, we run a foreach loop to print those ids.

My code

<ul class="client-list">

    <?php global $blind_opt;

    $logo = $blind_opt['blind_logo'];

    $logos = explode(",", $logo);

    foreach($logos as $image):

    ?>
    <li>
    <a href="#"><img src="<?php $imag_var = wp_get_attachment_image_src($image); echo $imag_var[0]; ?>" alt=""></a>
    </li>
    <?php endforeach; ?>
</ul>