if($_FILES['foto']['tmp_name']) {
$tab = getimagesize($_FILES['foto']['tmp_name']);
$width = $tab[0];
$height = $tab[1];
$mime = $tab['mime'];
if($width<600 && $height<400)
$errors[]='złe wymiary zdjęcia, minimalne wymiary 600x400';
if(!preg_match("/(jpg|jpeg|png|gif)/", $mime))
$errors[]='zły format zdjęcia';
}
23 lip 2009