RE: [PHP-DB] PHP in Database Fields..

2002-06-25 Thread Chris Barnes

eval() might do what your asking for.
I'm no expert tho.

-Original Message-
From: Matthew Tedder [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, 25 June 2002 7:32 AM
To: [EMAIL PROTECTED]
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



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




Re: [PHP-DB] PHP in Database Fields..

2002-06-24 Thread szii

exec() the query results.

-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


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




Re: [PHP-DB] PHP in Database Fields..

2002-06-24 Thread Matthew Tedder

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 = #FF;
$mystr = centerfont color=$glPageFGThemed 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




Re: [PHP-DB] PHP in Database Fields..

2002-06-24 Thread kodrik

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

   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??

I save the code into a file and save the url of the file into a database and
then just include that file into my code.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: For info see http://www.gnupg.org

iEYEARECAAYFAj0X0KYACgkQB+LNTWXM8xRhQQCcCAjQRcc6oq8QTTIBiq2PN/qN
2noAnAxue/MZM+3JC9YePkVBzbQQasme
=/jFr
-END PGP SIGNATURE-

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




Re: [PHP-DB] PHP in Database Fields..

2002-06-24 Thread szii

I'm sorry, brainfart.

Don't exec(), eval().

Apologies.

-Mike

- Original Message - 
From: Matthew Tedder [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Sent: Monday, June 24, 2002 4:00 PM
Subject: Re: [PHP-DB] PHP in Database Fields..


 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 = #FF;
 $mystr = centerfont color=$glPageFGThemed 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


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