First add the next function to your file:
function delete_images_by_refnum($image_folder, $ref_num)
{
$d = opendir($image_folder);'
if(!is_resource($d)) return;
while($f = readdir($d))
{
if(substr($f, 0, strlen($ref_num)+1) == $ref_num + '_')
unlink ($image_folder.'/'.$f);
}...