Adrian Georgescu writes:
Most probably your php.ini does not have global
variables enable. Is
advisable to read the INSTALL.txt in docs directory.
it is very bad security wise to write php application that relies on
globals being on.
from php.ini file:
; 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
-- juha