何らかの理由でチェックボックスが表示されませんが、フォームから移動すると表示されます。また、IE では表示されますが、Chrome では表示されません。
<p><span style="color: #474747; font-size: 1.35em; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; line-height: 1.85em;">Delete Images </span>
<?php
// SCAN DIRECTORIES
$dirG = '../products/'.$trailertoedit.'/gallery/';
$dirGallerys = scandir($dirG);
foreach ($dirGallerys as $dirGallery) {
if ($dirGallery === '.' or $dirGallery === '..' or $dirGallery === 'index.php') continue;
if (is_dir($dirG)) {
echo '<br>checkbox<input type="checkbox">Delete '.$dirGallery.' -> ';
echo '<a href="'.$dirG.$dirGallery.'" data-lightbox="trailer"><img src="'.$dirG.$dirGallery.'" height="100px"></a>';
}
}
?>