close ad
 
Important WebAssist Announcement
open ad
View Menu

Technical Support Forums

Free, outstanding support from WebAssist and your colleagues

Help with repeating tables

Thread began 12/22/2015 9:06 am by iain331081 | Last modified 12/23/2015 5:01 pm by iain331081 | 2535 views | 8 replies

Ray BorduinWebAssist

I add limit 21 to the query for efficiency. It would still only display the 21 without it, but since I know only 21 records are being shown there is no reason to retrieve more.

The first record is always first, so I don't need to do anything to show the first record.

On line 238 I add a call to mysql_fetch_assoc() to move to the next record (second) before starting the loop:

php:
<?php  

            $row_rsProductUpdates 
mysql_fetch_assoc($rsProductUpdates); 
?>



The number of rows actually displayed is controlled by line 117 in the loop settings:

$RepeatSelectionCounter_1449935665360_Iterations = "20";



To have it not break in the middle of a word, I'd return more characters than you need in the sql query, maybe change it to 160... then add a function to the php:

php:
<?php

function truncate($str$width) {
    
$str str_replace("\n"," ",$str);
    return 
strtok(wordwrap($str$width"...\n"), "\n");
}
?>



And then display the column using that function like:

php:
<?php echo(truncate($row_rsProductUpdates['summarytext'], 140)); ?>



Breaking it into multiple repeated regions shouldn't be an issue... just lower the number in the first one on line 117 and add more repeated regions for the others. You wouldn't really need to change the limit in the SQL unless you were displaying more than 21 total rows.


Did this help? Tips are appreciated...

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...