will this 'if' code work
if($level =< $row->minlevel) { //Do this code } else { //dont do anything }
basicly if $level is lower or equal to $row->minlevel
The manual is your friend:
http://www.phpbuilder.com/manual/language.operators.comparison.php
<=, not =<