[PHP] Re:phpinfo

2002-05-23 Thread Steve Edberg
You might want to take a look at: http://www.php.net/manual/en/ref.info.php Specifically, get_cfg_var(), ini_get(), and ini_get_all() -steve At 10:08 AM -0700 5/23/02, Dennis Gearon wrote: >What I was trying to do was to find out how to get magic_quotes_sybase >config value. This wil

[PHP] Re:phpinfo

2002-05-23 Thread Dennis Gearon
What I was trying to do was to find out how to get magic_quotes_sybase config value. This will do it: $test = addslashes("'"); $this->sybase_magic = strcmp( $test, "\\'"); Also, I looked up eval(), it doesn't return the output of all fucntions like I thought. I would have to use system,