Hi!
I wonder if it's possible to have a table do a calculation and put it on a php page.
| name | game number | won | equal | lost | total |
|IKS | 11 | 2 | 9 | 0 | 15 |
I want to do this:
3 * won_value + equal_value = total
3 * 2 + 9 = 15
Is there some way to do this ?
if not in the database / table, is it possible to get php to calculate and do the output on a page ?
Best regards
IKS