i have 2 varibles, $A = '6' and $B = '3'
How do i check which is the lowest value?
cheers
first of all, and realize this is a newbie speaking, you must remove the quotes around the number or they will be stored as strings.
Next, to see which is higher, I'd use an if statement
if ($a > $b) { //Code } else { //other code }