Hi there! I have a problem that I can't figure out by myself.
I use a own optionpage from my admin panel where I cant make some changes in my stylesheet. But the only solution I can get to work is if I include a PHP file and use my "echos" between <style></style> in the header.
I would like to get a PHP stylesheet instead and a file where I can use my saved option stuff.
I use this code to show my saved data
global $options;
foreach ($options as $value) {
if (get_settings( $value['id'] ) === FALSE) { $$value['id'] = $value['std']; } else { $$value['id'] = get_settings( $value['id'] ); }
}
Any idées?