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

I have not found an answer to the problem I am having (that and I don't yet understand everything in php and loops being mentioned in the forum). I am trying to loop pictures (mission accomplished) within php, using a database. I am also trying to loop the title and the caption.

At the moment, I am capable of only looping the pictures in my slideshow (the title and caption appear behind each image. I have tried two things. the first is to echo my results outside of the loop (which isn't working, as my second loop doesn't actually loop them), and the second is the following (the results appear within the slideshow):

<div id="allinone_carousel_sweet">
<div class="myloader"></div>

        <?php $query_getallpics="select * from mades_pics";
            $r_getallpics=mysql_query($query_getallpics,$connection) or die (__LINE__." ".mysql_error());
            $n_getallpics= mysql_num_rows($r_getallpics);

            echo"<ul class=\"allinone_carousel_list\">";

            for($i=0; $i<$n_getallpics; $i++){

                        echo"<li>";
                $final_path = mysql_result($r_getallpics,$i,'pic_url');
                $title = mysql_result($r_getallpics,$i,'name');
                $caption = mysql_result($r_getallpics,$i,'caption_name');

                $pic = "<img id=\"pic$i\" src=\"$final_path\" title=\"$title\" alt=\"\" class=\"slideshow_pics\" />";

                echo "<div style=\"position:absolute;top:400;z-index:999999\">"; echo $title; echo "</div>";
                echo $pic;
                echo $caption;


                        echo "</li>";
                        }

                        echo"</ul>";
        ?> </div>

The position is just random, I didn't care about where it appears for now.

If I could just use position absolute to get the caption out of there somehow (OR having another looping simultaneously... that would be useful). But right now, any loop seems to only work within the first div. I don't mean any nested loops, I just mean having a div followed by two loops. Basically, my initial loop is looping within the slideshow, which is exactly what I want. As for my titles and my captions, obviously, that is not a good thing.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.