On Monday 24 June 2002 09:21 pm, [EMAIL PROTECTED] wrote:
> exec() the query results.

I can't seem to get that to work...  Basically, I want to put my variables 
into the code in order to theme HTML code within data base fields.

Consider the following for example:

$glPageFG = "#0000FF";
$mystr = "<center><font color=$glPageFG>Themed Text!</font></center>";
print exec($mystr);    // Doesn't work
exec($mystr);            // Doesn't work
print $mystr;              // Doesn't work after an exec(), either..

The only part of the PHP reference guide I can check online at the moment is 
not telling me much, either..

Matthew

>
> -Mike
>
> ----- Original Message -----
> From: "Matthew Tedder" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Monday, June 24, 2002 2:31 PM
> Subject: [PHP-DB] PHP in Database Fields..
>
> > Question:
> >
> >     I want to put PHP code into database fields holding HTML text, how
> > can I make it execute that PHP before sending to the browser??
> >
> >     Currently, I get the text from MySQL and print it.... The browser
> > shows the PHP code mixed into the HTML.
> >
> > Matthew
> >
> >
> > --
> > Anything that can be logically explained, can be programmed.
> >
> > --
> > PHP Database Mailing List (http://www.php.net/)
> > To unsubscribe, visit: http://www.php.net/unsub.php

-- 
Anything that can be logically explained, can be programmed.

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to