close ad
 
Important WebAssist Announcement
open ad
View Menu

Technical Support Forums

Free, outstanding support from WebAssist and your colleagues

rating

region not showing

Thread began 3/05/2014 9:24 am by Jamie | Last modified 3/05/2014 11:22 am by Jason Byrnes | 1977 views | 7 replies |

Jamie

region not showing

Hey Jason

Have created a couple of regions in the attached file which depend on whether or not the 'Live' row is set to 0 (not live) or 1 (live)

I have got the error message working and will show if there is no data or the data is set to Live = 0

What I'm struggling with is to show the testimonial if one is available (eg Live = 1) but it doesnt show anything in the space on the page (the error message doesnt show either).

What have I done wrong please? file attached

Sign in to reply to this post

Jason ByrnesWebAssist

after this code:
<?php
$showError = 0;
do{
if($row_Testimonials['Live'] == 1) $showError = 1;
} while ($row_Testimonials = mysql_fetch_assoc($Testimonials));

$showTestimonials = 0;
do{
if($row_Testimonials['Live'] == 1) $showTestimonials = 1;
} while ($row_Testimonials = mysql_fetch_assoc($Testimonials));
?>

you need to reset the recordsets to the beginning.

place your cursor after that code block, open the server behaviors panel and select WebAssist -> Dynamic Webcharts -> Reset to first record.

add the behavior for each recordset.

Sign in to reply to this post

Jamie

I had done that (and have redone it) but no joy.

The attached screenshot shows where the testimonial (if one is active) should be but its not showing. Have also re-added the page itself with the adjusted code.

Sign in to reply to this post

Jason ByrnesWebAssist

I'll need to troubleshoot directly, see the private message section.

Sign in to reply to this post

Jamie

See PM

Sign in to reply to this post

Jason ByrnesWebAssist

you are using the same repcrdset in both loops, so the recordset needs to be reset after the first loop and again after the second loop:

<?php
$showError = 0;
do{
if($row_Testimonials['Live'] == 1) $showError = 1;
} while ($row_Testimonials = mysql_fetch_assoc($Testimonials));
?>
<?php
$chk_rows = mysql_num_rows($Testimonials);
if ($chk_rows > 0) {
mysql_data_seek($Testimonials, 0);
$row_Testimonials = mysql_fetch_assoc($Testimonials);
}
?>
<?php
$showTestimonials = 0;
do{
if($row_Testimonials['Live'] == 1) $showTestimonials = 1;
} while ($row_Testimonials = mysql_fetch_assoc($Testimonials));
?>
<?php
$chk_rows = mysql_num_rows($Testimonials);
if ($chk_rows > 0) {
mysql_data_seek($Testimonials, 0);
$row_Testimonials = mysql_fetch_assoc($Testimonials);
}
?>

Sign in to reply to this post

Jamie

Gotcha. Thanks Jason

Sign in to reply to this post

Jason ByrnesWebAssist

you're welcome.

Sign in to reply to this post

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