Hi Im trying to create a value from another value inside a repeater area. Here's an example:
I want to work out weekly rate when given monthly - simple multiplication like this inside the repeater area:
I'm having problems working out how to get the field value in php, so replacing the content within the {} I just get 0 each time.
Ive tried
but doesnt find it, just gives 0 each time.
Any ideas?
Thanks
Ben
I want to work out weekly rate when given monthly - simple multiplication like this inside the repeater area:
$weekly = {var:repeater_view.Model.field}*0.23; print ($weekly);
I'm having problems working out how to get the field value in php, so replacing the content within the {} I just get 0 each time.
Ive tried
$weekly = $this->data['fieldname'] * 0.23; print ($weekly);
but doesnt find it, just gives 0 each time.
Any ideas?
Thanks
Ben