I’m very new to php so I’m sure this is pretty basic. I need to translate the following into a else-if statement.
[php]<?php
$ch = 100 + (($a < $b) ? $a : $b) * 15;
?> [/php]
$a and $b can any interger
I just can’t get my head around this.
Any help would be great.
Cheers
Brad