BrendonM,
Yes, you have the right idea.
You would just add some variables above "// Do sorting methods" something like this:
Code:
$a=11;
$b=10;
$number=0;
// Do sorting methods
And then add a new action with the $conditions like this:
Code:
} else if ($action=="TenSecCars") {
$cond.=" WHERE userfield.field55<'".intval($a)."' AND userfield.field55>='".intval($b)."'";
$condition.=" AND userfield.field55<'".intval($a)."' AND userfield.field55>='".intval($b)."'";
$orderby="userfield.field55";
$direction=ASC;
You get the idea. Good luck with it.