Re: [PHP] Comparison Problems with 5.2.5



On Dec 30, 2007 8:04 AM, Silvio Porcellana <sporc@xxxxxx> wrote:
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



I think it needs to be >= (greater than or equal to) or <= (less than
or equal to).
-Casey
.



Relevant Pages