k, here's what my query returns.
Code:
mysql> select uname, user_level from nuke_users;
+-----------+------------+
| uname | user_level |
+-----------+------------+
| Anonymous | 1 |
| Admin | 2 |
+-----------+------------+
2 rows in set (0.00 sec)
i updated the php.ini in my WINNT folder and that worked.
Code:
; Whether or not to register the EGPCS variables as global variables. You may
; want to turn this off if you don't want to clutter your scripts' global scope
; with user data. This makes most sense when coupled with track_vars - in which
; case you can access all of the GPC variables through the $HTTP_*_VARS[],
; variables.
;
; You should do your best to write your scripts so that they do not require
; register_globals to be on; Using form variables as globals can easily lead
; to possible security problems, if the code is not very well thought of.
;register_globals = OFF
register_globals = ON
thanks guys.
Dukaruk