Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7919931
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T16:01:58+00:00 2026-06-03T16:01:58+00:00

I am newish to PHP and I am trying to cycle through an array

  • 0

I am newish to PHP and I am trying to cycle through an array and stop after 5 items.
I am using the following:

    $images = ( $f->APIVer == "1.2.2" ) ? $images['Images'] : $images;
            // Display the thumbnails and link to the medium image for each image
            foreach ( $images as $index => $image) {

                echo '<li><a href="'.$image['XLargeURL'].'"><img src="'.$image['TinyURL'].'" alt="thumbnail"/></li>';
            }
            while ( $index < 5 );
        }

Although it does not seem to work…
Am I doing something wrong?

Thanks in advance

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-03T16:02:00+00:00Added an answer on June 3, 2026 at 4:02 pm

    If the array has a zero based index you can do:

    foreach ( $images as $index => $image) {
        if ($index == 5) break;
        echo '<li><a href="'.$image['XLargeURL'].'"><img src="'.$image['TinyURL'].'" alt="thumbnail"/></li>';
    }
    

    Otherwise you can add your own counter:

    $i = 0;
    foreach ( $images as $index => $image) {
        $i++;
        if ($i == 5) break;
        echo '<li><a href="'.$image['XLargeURL'].'"><img src="'.$image['TinyURL'].'" alt="thumbnail"/></li>';
    }
    

    What you tried is another type of loop:

    $index = 0;
    do {
        echo '<li><a href="'.$images[$index]['XLargeURL'].'"><img src="'.$images[$index]['TinyURL'].'" alt="thumbnail"/></li>';
        $index++;
    } while ( $index < 5 );
    

    Or:

    $index = 0;
    while ( $index < 5 ) {
        echo '<li><a href="'.$images[$index]['XLargeURL'].'"><img src="'.$images[$index]['TinyURL'].'" alt="thumbnail"/></li>';
        $index++;
    }
    

    Another alternative would be a for loop:

    for($index=0; $index < 5; $index++) {
        echo '<li><a href="'.$images[$index]['XLargeURL'].'"><img src="'.$images[$index]['TinyURL'].'" alt="thumbnail"/></li>';
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm using PHP's new(ish) Date classes for a calendar/scheduler I'm developing. I am trying
I am newish to Ruby and I am trying to write a method to
Magento is a newish (past 5 years) PHP based Ecommerce system with an architecture
Probably a simple answer that's mock or stub related but I'm newish and trying
I'm newish to PHP but I hear XSS exploits are bad. I know what
I'm newish to Java and am trying to do somethings with dates. First I
Hello I am newish to android dev, I am using Eclipse and I have
I'm newish to TFS and am working with VS and TFS 2010 RC releases.
I'm newish to Python (and stackoverflow)...bear with me! I have a dictionary that looks
I am creating a map using the new(ish) v3 of the Google Maps API

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.