I am doing a mysql query on my database that returns values that look like this:
param value
path_to_file "some_path"
path_to_scritps "some_path"
I want to take that and put it into and single array to be used as a session variable thorughout my application.
This is what I want it to look like:
$global_ops is the variable array name
$global_ops[path_to_file] = "some_path";
$global_ops[path_to_scripts] = "some_path";
I hope you can help me!!!