On Fri, 2003-09-12 at 22:49, Michael Ryan Byrd wrote: > > were you using... > > > > $_SERVER['PHP_SELF'] > > nope. I was/am using $PHP_SELF > > Anywho, I just got it to work. My script was running in one of those > protected sandbox virtual thing-a-mub-bobbies which severely limited its > flexibility and power. Now it's free!
globals are turned off for security reasons in PHP now. I suggest you access them through the variables $_SERVER, $_POST, $_GET and so forth, or else you're vulnerable to someone typeing ?something=asdfsdf on the url. Don't turn globals on if you can help it at all. Michael > > cheers, > > Ryan > > > ____________________ > BYU Unix Users Group > http://uug.byu.edu/ > ___________________________________________________________________ > List Info: http://uug.byu.edu/cgi-bin/mailman/listinfo/uug-list -- Michael Torrie <[EMAIL PROTECTED]> ____________________ BYU Unix Users Group http://uug.byu.edu/ ___________________________________________________________________ List Info: http://uug.byu.edu/cgi-bin/mailman/listinfo/uug-list
