Решение моей задачи:
После функции rating_bar, нужно вставить функцию приведенную ниже, в файле _drawrating.php вот этот код:
function rating_bar_number($id,$units='',$static='') {
require_once('_config-rating.php'); // get the db connection info
// get votes, values, ips for the current rating bar
$query=mysql_query("SELECT total_votes, total_value, used_ips FROM $rating_dbname.$rating_tableName WHERE id='$id' ")or die(" Error: ".mysql_error());
// insert the id in the DB if it doesn't exist already
// see: http://www.masugadesign.com/the-lab/scripts/unobtrusive-ajax-star-rating-bar/#comment-121
if (mysql_num_rows($query) == 0) {
$sql = "INSERT INTO $rating_dbname.$rating_tableName (`id`,`total_votes`, `total_value`, `used_ips`) VALUES ('$id', '0', '0', '')";
$result = mysql_query($sql);
}
$numbers=mysql_fetch_assoc($query);
if ($numbers['total_votes'] < 1) {
$count = 0;
} else {
$count=$numbers['total_votes']; //how many votes total
}
$current_rating=$numbers['total_value']; //total number of rating added together and stored
$rating1 = @number_format($current_rating/$count,1);
return $rating1;
}
И там где нужно только число вызываете так:
<?php echo rating_bar_number('id1',''); ?>
А где основной рейтинг:
<?php echo rating_bar('id1',''); ?>