Log in

View Full Version : do you see anything wrong with this code?


Guy G
12-29-2004, 05:39 AM
//Rating clculation
$ratings = $DB_site->query("SELECT * FROM " . TABLE_PREFIX . "articlerating WHERE articleid=$articleid");
$ratingcount = $DB_site->num_rows($ratings);
while ($rating = $DB_site->fetch_array($ratings))
{
$totalrating = $totalrating + $rating['rating'];
}

if ($ratingcount > 0)
{
$totalrating = $totalrating/$ratingcount;
}

if ($ratingcount == 0)
{
$ratingstatus = 'No Rating';
}
else
{
$totalrating = round($totalrating);
$ratingstatus = "<img src=\"./images/rating/rating_$totalrating.gif\" style=\"padding-top:4px;\" alt=\"Rating: $totalrating\" height=\"9\">";
}


for some reason its not always working... its echoing rating_10.gif for some reason... my home page is www.ex-zone.com, article modules is on the bottom, view source and see.

Dean C
12-29-2004, 08:53 AM
Ok what exactly are you trying to do here :)?

cinq
12-29-2004, 09:12 AM
Hmm seems fine ...
If it is showing rating_10.gif, means the averaged rating for that particular articleid = 10.

a suggestion u might want to try

//Rating calculation
$ratings = $DB_site->query("SELECT rating FROM " . TABLE_PREFIX . "articlerating WHERE articleid=$articleid");
$ratingcount = $DB_site->num_rows($ratings);
$totalrating = 0;

while ($rating = $DB_site->fetch_array($ratings))
{
$ratevalue = $rating['rating'];
$totalrating = $totalrating + $ratevalue;
}

if ($ratingcount == 0)
{
$ratingstatus = 'No Rating';
}
else
{
$totalrating = $totalrating/$ratingcount;
$totalrating = round($totalrating);
$ratingstatus = "<img src=\"./images/rating/rating_$totalrating.gif\" style=\"padding-top:4px;\" alt=\"Rating: $totalrating\" height=\"9\">";
}


Would help if you allowed guests to view your article section ..

Guy G
12-29-2004, 10:53 AM
Ok what exactly are you trying to do here :)?

im trying to show the newest article's rating on vBA home page.

thanks cinq, trying it now.

EDIT: Thanks m8! that did the trick!

cinq
12-29-2004, 11:08 AM
:)
You might want to cater

<span class="smallfont">

for the case when there is No Rating.

Guy G
12-29-2004, 11:35 AM
Excellent, thanks for all m8.