Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

am storing two arrays in one column.first one is images stored as image1*image2*...etc and second one is descriptions as description1*description2*...etc. i want to use these two set of arrays in one foreach loop.Please help.

share|improve this question
update your question and show what you have and what you expected.. – jogesh_pi Sep 10 '12 at 4:47
Show us your code, the output and the expected output. – alfasin Sep 10 '12 at 4:48

4 Answers

up vote 0 down vote accepted

It does not seem possible by foreach loop. Instead try using for loop. If you are sure both your arrays are of the same size, then try using following code:

for ($i=0; $i<sizeof(array1); $i++) {
     echo $arrray1[$i];
     echo $arrray2[$i];
}
share|improve this answer
Thank a lot.... – user1586851 Sep 10 '12 at 6:35

Just reference the key:

foreach ($images as $key => $val) {
    echo '<img src="' . $val . '" alt="' . $descriptions[$key] . '" /><br />';
}
share|improve this answer

You could use array_combine to combine the two arrays and then use a foreach loop.

$images = array('image1', 'image2', ...);
$descriptions = array('description1', 'description2', ...);

foreach (array_combine($images, $descriptions) as $image => $desc) {
  echo $image, $desc;
}
share|improve this answer

You can't use foreach, but you can use for and indexed access like so.

$count = count($images);
for ($i = 0; $i < $count; $i++) {
    $image = $images[$i];
    $description = $descriptions[$i];
}
share|improve this answer
why can not use foreach() – Amit Maurya Sep 10 '12 at 7:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.