I'll try to make the explanation as simple as possible...
I store page text in a mySQL DB. Title, teaser and content are seperate fields in a table. The content is pulled from the DB and displayed as follows:
echo $title;
echo $teaser;
echo $content;
Inside the text that represents $content i would like to add dynamic text. So when I create the page content from the admin section I would like to be able to type:
sometext... $some_changeable_stuff...more text.
When I try to do this now it simply prints the exact same line as above without changing $some_changeable_stuff to its set value.
So what I'm asking is how do I make PHP understand that $some_changeable_stuff actually should read this_is_php_code
Hope you understood what I'm trying to do here...