I have 3 variables: $num1, $num2, and $num3. Each represent the number of rows a table column has.
I want to find which variable has the highest variable, so I can u
$highest = max($num1, $num2, $num3);