Meta Box Plugin Cloned Fields – Multiple Foreach values

amit helped you out, but while we’re at it you really shouldn’t be echoing everything like that. Should probably try this instead:

<?php
foreach ( $videoID as $value ) { ?>
    <div class="video-pops">
        <a class="thumb video-pop-lb" data-video-pid="<?php echo $videoID; ?>"></a>
<?php } ?>

And so on.

You may even be better off using the alternate syntax;

foreach ( $videoID as $value ) :
...
endforeach;