ID: ".$image['id']."
"; // File name $image_pathinfo = pathinfo($image['imagename']); if (strlen($image['imagename']) > 30) { echo "File Name: ".substr($image_pathinfo['filename'], 0, 30)."...
"; } else { echo "File Name: ".$image_pathinfo['filename']."
"; } // File extention echo "File Type: ".pathinfo($image['imagename'], PATHINFO_EXTENSION)."
"; // Image resolution list($width, $height) = getimagesize($image_path); echo "Image resolution: ".$width."x".$height."
"; // Image Upload date echo "Last updated: +0 ".$image['upload']."
"; echo "