Intenta lo siguiente, yo siempre lo hago así:
Código PHP:
$max_no_img=1;
echo "<table border='0' cellspacing='0' cellpadding='0' align='left'>";
for($i=1; $i<=$max_no_img; $i++){
echo "<tr><td></td><td>
<input type=file name='images".$i."' ></td></tr>";
}
echo "</table>";
y luego haces
Código PHP:
for($i=1; $i<=$max_no_img; $i++)
{
if(empty($_FILES['images'.$i]['name']))
{
....
}
}
Esto debería funcionarte muy bien. Un saludo...