Ok,
I have tried, and googled and this is a last resort.
I have a config file like so:
[code=php]
//comment
variable = "value" //for text
variable = value //numeric
[/code]
I have managed to get php to output an array like so (using the explode function)
[code=php]
Array
(
[0] => variable = "value"
)
and not ...
Array
(
[ variable] => "value"
)[/code]
How do I do this?
Many Thanks!
					I have tried, and googled and this is a last resort.
I have a config file like so:
[code=php]
//comment
variable = "value" //for text
variable = value //numeric
[/code]
I have managed to get php to output an array like so (using the explode function)
[code=php]
Array
(
[0] => variable = "value"
)
and not ...
Array
(
[ variable] => "value"
)[/code]
How do I do this?
Many Thanks!
Comment