close ad
 
Important WebAssist Announcement
open ad
View Menu

Technical Support Forums

Free, outstanding support from WebAssist and your colleagues

Nested repeat regions, use value from parent repeat region to filter nested

Thread began 12/24/2018 11:15 am by p.kelembeck232519 | Last modified 9/17/2019 3:33 pm by p.kelembeck232519 | 1489 views | 26 replies

JBWebWorks

Thanks Dave,
It is working but it is repeating the region the number of times that there are images in the database. So if category one has four images, it repeats four times, etc.

I have two tables in db.
photos_category with two cols - category_ID and category_name
photos with four cols -photos_ID photos_file photos_alt and cat_ID

<?php
$Recordset1 = new WA_MySQLi_RS("Recordset1",$connsqli,0);
$Recordset1->setQuery("SELECT photos.photos_ID, photos.photos_file, photos.photos_alt, photos.cat_ID, photos_category.category_ID, photos_category.category_name FROM photos, photos_category WHERE photos_category.category_ID = photos.cat_ID ");
$Recordset1->execute();
?>



And the loop

<?php
$wa_startindex = 0;
while(!$Recordset1->atEnd()) {
$wa_startindex = $Recordset1->Index;
?>
<?php
$Recordset2 = new WA_MySQLi_RS("Recordset2",$connsqli,0);
$Recordset2->setQuery("SELECT * FROM photos WHERE photos.cat_ID = ? ORDER BY photos.photos_ID");
$Recordset2->bindParam("i", "".($Recordset1->getColumnVal("category_ID")) ."", "-1"); //var1
$Recordset2->execute();
?>
<span class="category"><?php echo($Recordset1->getColumnVal("category_name")); ?></span><br />
<br />
<div align="center">
<?php
$wa_startindex = 0;
while(!$Recordset2->atEnd()) {
$wa_startindex = $Recordset2->Index;
?>
<a href="photos/<?php echo($Recordset2->getColumnVal('photos_file')); ?>" rel="lightbox" title="<?php echo($Recordset2->getColumnVal("photos_alt")); ?>"><img src="photos/<?php echo($Recordset2->getColumnVal("photos_file")); ?>" /></a>
<?php
$Recordset2->moveNext();
}
$Recordset2->moveFirst(); //return RS to first record
unset($wa_startindex);
unset($wa_repeatcount);
?>
</div>
<?php
$Recordset1->moveNext();
}
$Recordset1->moveFirst(); //return RS to first record
unset($wa_startindex);
unset($wa_repeatcount);
?>

Build websites with a little help from your friends

Your friends over here at WebAssist! These Dreamweaver extensions will assist you in building unlimited, custom websites.

Build websites from already-built web applications

These out-of-the-box solutions provide you proven, tested applications that can be up and running now.  Build a store, a gallery, or a web-based email solution.

Want your website pre-built and hosted?

Close Windowclose

Rate your experience or provide feedback on this page

Account or customer service questions?
Please user our contact form.

Need technical support?
Please visit support to ask a question

Content

rating

Layout

rating

Ease of use

rating

security code refresh image

We do not respond to comments submitted from this page directly, but we do read and analyze any feedback and will use it to help make your experience better in the future.

Close Windowclose

We were unable to retrieve the attached file

Close Windowclose

Attach and remove files

add attachmentAdd attachment
Close Windowclose

Enter the URL you would like to link to in your post

Close Windowclose

This is how you use right click RTF editing

Enable right click RTF editing option allows you to add html markup into your tutorial such as images, bulleted lists, files and more...

-- click to close --

Uploading file...