Forums

Custom PHP stylesheet (3 posts)

  1. tobbesanda
    Member
    Posted 3 years ago #

    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?

  2. stevenoi
    Member
    Posted 3 years ago #

    Have the same problem...

  3. Devin Price
    Member
    Posted 2 years ago #

Topic Closed

This topic has been closed to new replies.

About this Topic