Not quite sure how to explain this, but here's a very simplified explanation what I am trying to do.
I have a file (css.php) that gets content of two fields in a database:
Field 1 = #333333
Field 2 = color: <?php echo $font_color; ?>;
I set the variables:
$font_color = Field 1
$css = Field 2
How can I write to the page $css but have it pull the value of $font_color?
If I do:
echo #css;
I want:
color: #333333;
I get:
color: <?php echo $font_color; ?>;
Can you point me in the right direction
Thanks in advance