zrodimel Posted April 13, 2011 Share Posted April 13, 2011 Hi, first of all thanks in advance for the help. I'm a newbie college student and am having a little problem with a project for a class that I can't figure out. I'm trying to construct a loop that creates an array for a javascript image gallery. First I call for the categories and I want to then pull all the images from that category into the array and then loop through all the categories in the database. The code below just cycles through the first category and then quits after pulling the images from that category. <?php // SQL Query for Categories $sql="SELECT CategoryID, CategoryName FROM pro2category"; $result = mysql_query($sql); if(empty($result)) { $num_results = 0; } else { $num_results = mysql_num_rows($result); } ?> <?php for($i=0; $i<$num_results; $i++) { $row = mysql_fetch_array($result); $CategoryID = $row["CategoryID"]; $CategoryName = $row["CategoryName"]; ?> var <?php echo $CategoryID ?> = new Array(); <!-- Images inside Array --> <!-- Images inside Array --> <!-- Images inside Array --> <!-- Images inside Array --> <?php $sql="SELECT ImageID, ImageName, ImageNumber, URL, CategoryID FROM pro2image WHERE CategoryID='$CategoryID'"; $result = mysql_query($sql); if(empty($result)) { $num_results = 0; } else { $num_results = mysql_num_rows($result); } ?> <?php for($i=0; $i<$num_results; $i++) { $row = mysql_fetch_array($result); $ImageID = $row["ImageID"]; ?> <?php echo $CategoryID ?>Array[<?php echo $i ?>] = "http://cgtweb2.tech.purdue.edu/356/zrodimel/Project2/admin/upload/<?php echo $ImageID ?>.jpg"; <?php } ?> <?php } ?> thanks for the help Zach Quote Link to comment https://forums.phpfreaks.com/topic/233630-nested-for-loop-problem/ Share on other sites More sharing options...
dcro2 Posted April 13, 2011 Share Posted April 13, 2011 Bad boy. If you're going to use nested loops, don't use the same variable names. The value that you set for $num_results in the second loop affects the number of iterations of the outer loop (which would be better off as a while loop, actually). Also, you assign the mysql result of the inner loop to the same variable as the outer loop. Same thing with $row, but that doesn't affect anything since you don't use it after starting another loop. Use different variables for each inner loop. Quote Link to comment https://forums.phpfreaks.com/topic/233630-nested-for-loop-problem/#findComment-1201228 Share on other sites More sharing options...
zrodimel Posted April 13, 2011 Author Share Posted April 13, 2011 you are the man! Thank you so much... i've been wrestling with this for hours. Quote Link to comment https://forums.phpfreaks.com/topic/233630-nested-for-loop-problem/#findComment-1201294 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.