I'll try to be brief and clear.
I don't know much PHP. I have an array that just looks too long:
http://i.stack.imgur.com/u4y11.jpg (can't post images yet, so please click)
As you can see, there are 7 options, and it looks ugly and long.
I would like to separate them into hideable sectors. Like:
3 first options [click here to dropdown options] 4 latest options [click here to dropdown options]
Instead of
Option 1 Option 2 Option 3 Option 4 Option 5 Option 6 Option 7
You know?
If someone could give me a light on this matter, I would be deeply grateful:
It's basically 7 copy and pastes like this:
$url_bgcolor = get_bloginfo('stylesheet_directory') . '/admin/images/bgcolor/';
$options[] = array( "name" => "Cor da letra do titulo da pagina",
"desc" => "Selecione a cor secundária do seu website.",
"id" => $shortname."_style2",
"std" => "",
"type" => "images",
"options" => array(
'default2.css' => $url_bgcolor . 'dark.png',
'black2.css' => $url_bgcolor . 'black.png',
'green2.css' => $url_bgcolor . 'green.png',
'blue2.css' => $url_bgcolor . 'blue.png',
'purple2.css' => $url_bgcolor . 'purple.png',
'orange2.css' => $url_bgcolor . 'orange.png',
'red2.css' => $url_bgcolor . 'red.png'
));