I have an array made of external image locations.
$theSize = array();
foreach($images as $imageChoices) {
$theSize[] = getimagesize($imageChoices);
How do I loop through the array $theSizes and return images with a width > 70 and a width > 60
Thanks!
This will loop through the images and compare width,height…if it is greater than the set valid dimensions, then it will insert it into the array $validImgs.