The following returns: 5 4
I'm trying to return the sum, so 9.
I thought I could do something like...
PHP:
<xf:foreach loop="$resources" value="$resource">
{{$resource.rating_avg}}
</xf:foreach>
I'm trying to return the sum, so 9.
I thought I could do something like...
PHP:
<xf:set var="$total">0</xf:set>
<xf:foreach loop="$resources" value="$resource">
<xf:set var="$total">{{$total+$resource.rating_avg}}</xf:set>
</xf:foreach>
{{ $total }}