array( 'href' => 'url', 'title' => 'text', 'src' => 'image-url', 'alt' => 'text' ), 2 => array( 'href' => 'url', 'title' => 'text', 'src' => 'image-url', 'alt' => 'text' ), 3 => array( 'href' => 'url', 'title' => 'text', 'src' => 'image-url', 'alt' => 'text' ), // add more data here ); $attrs = array('href', 'title', 'src', 'alt'); $numberOfItems = 2; // Change to the number of items you want show $i = 1; foreach (array_rand($items, $numberOfItems) as $key) { $class = 'r' . $i; foreach ($attrs as $attr) $$attr = $items[$key][$attr]; echo <<
  • $alt
  • LI; $i++; } } ?>