I am trying to infer a value from xml, this is what I am doing -
<?php echo $responseTemp->Items->Item->CustomerReviews->AverageRating; ?>
This outputs 4.5, but when I change it to the code below, it displays as 8. Why doesn't it display as 9? Thanks.
<?php echo $responseTemp->Items->Item->CustomerReviews->AverageRating*2; ?>
source share