> I have following options for working with the
> configuration files with the relatively large web
> application.
For additional reference, you might want to check out
PEAR's Configuration package. It's fairly flexable and
work's pretty good. Although, I have found some oddness
when it's work
I tend do do something similar here:
I usually set up my arrays and then access them later using the GLOBALS
superglobal array. For some projects I tend to use multidimensional
arrays because I can do something like.
$config['db']['name'] = 'something';
$config['db']['user'] = 'someone';
$con
From: "Hardik Doshi" <[EMAIL PROTECTED]>
> I have following options for working with the
> configuration files with the relatively large web
> application.
>
> 1. Configuration variables using the DEFINE.
>
> 2. Array - Each configuration variable as an array
> element.
>
> 3. PHP.INI like config f
3 matches
Mail list logo