Own calculation
-
Hi,
I want to change the calculation a bit.
For example:
<table>
<tr>
<td>1-1</td>
<td>0-0</td>
<td>
toto points.<br />
total = <?php echo $totopoints; ?> = <?php echo $totopoints ?>
</td>
</tr>
</table>Should be in my pool:
<table>
<tr>
<td>1-1</td>
<td>0-0</td>
<td>
toto points.<br />
total = <?php echo $totopoints; ?> + <?php echo $diffpoints; ?> = <?php echo $totopoints + $diffpoints; ?>
</td>
</tr>
</table>In wich file do i change them?
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
The topic ‘Own calculation’ is closed to new replies.