Magnus Anderson wrote:

...snip...

This will not work (I expect this to work since _USER['level'] is 5)
if($_USER['level'] => 5)


Try
if($_USER['level'] >= 5)

maybe it helps ('=>' is used when assigning values in an hash, maybe you are triggering something strange...)

--
Antinori and Partners - http://www.antinoriandpartners.com
Soluzioni web - da professionisti

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to