just noticed i added only a else check other then else if so this one should work:

PHP Code: 
$defaultimage "http://url/defaultimage.jpg";
$image "";

if (empty(
$images[0])) {
    if (empty(
$screens)) 
        
$image $defaultimage;
    else
        
$image $screens;
} else {
    
$image $images[0];