RE: [PHP-DB] php-mysql-and the elusive eval statement....

2001-11-02 Thread Rick Emery
PROTECTED]] Sent: Thursday, November 01, 2001 4:06 PM To: [EMAIL PROTECTED] Subject: [PHP-DB] php-mysql-and the elusive eval statement I'm having a php/mysql problem using the eval statement. what I'm done is created a template that is database driven ie. the document is setup so that all

[PHP-DB] php-mysql-and the elusive eval statement....

2001-11-01 Thread Richard A. Noordam
I'm having a php/mysql problem using the eval statement. what I'm done is created a template that is database driven ie. the document is setup so that all of the head, leftside, body, right and bottom are all text comming from database query returns. all database returns are valid tested code.

Re: [PHP-DB] php-mysql-and the elusive eval statement....

2001-11-01 Thread Petr Tuma
I would think that you can't use '?' nad '?' special tags in the eval function (at least use only one of it). Try this ?php eval(?hi?); ? But I think that what will is that it will stop execution on the '?' sign (end of PHP code) and print out an error like 'missing closing quote' or such. On