Support

Account

Home Forums Add-ons Gallery Field Accessing Gallery Images by Index number Reply To: Accessing Gallery Images by Index number

  • 
    $cabin_photo_gallery[0]; // would be the first image 1 == image 2 etc
    
    
    // index 5 = image 6
    for ($i=4; $i<count($cabin_photo_gallery); $i++) }
      // do something with $cabin_photo_gallery[$i];
    }