ID: " . $image['id'] . "
"; // File name if (strlen($image['imagename']) > 30) { echo "File Name: " . substr($image['imagename'], 0, 30) . "...
"; } else { echo "File Name: " . $image['imagename'] . "
"; } // 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 "