Re: [PHP] Processing Code created on the fly

2002-04-01 Thread Erik Price
On Friday, March 29, 2002, at 11:39 PM, Jonathan Duncan wrote: I have read the page for eval on php.net several times as well as the very helpful examples, but whenever I use eval, it just prints out the same stuff. By same stuff I mean wether I use eval or just the variable by itself

[PHP] Processing Code created on the fly

2002-03-29 Thread Jonathan Duncan
I am trying to create an HTML Table which has TH headers which are different depending upon the link clicked to access the page. Also, the content of the TD's below the headers would be different depending on the headers and depending on the link clicked. I have sorted out many of the details,

Re: [PHP] Processing Code created on the fly

2002-03-29 Thread Jason Wong
On Saturday 30 March 2002 05:32, Jonathan Duncan wrote: I am trying to create an HTML Table which has TH headers which are different depending upon the link clicked to access the page. Also, the content of the TD's below the headers would be different depending on the headers and depending

Re: [PHP] Processing Code created on the fly

2002-03-29 Thread Jonathan Duncan
Jason, That is a good point and that being the case, following is my code. Thanks, Jonathan Duncan *-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-* ? These variables are populated and assigned in a function: (This is just an example. In actuality these variables are populated using other means.)

Re: [PHP] Processing Code created on the fly

2002-03-29 Thread Jason Wong
On Saturday 30 March 2002 11:16, Jonathan Duncan wrote: ? These variables are populated and assigned in a function: (This is just an example. In actuality these variables are populated using other means.) - $othervars = $service =

Re: [PHP] Processing Code created on the fly

2002-03-29 Thread Jonathan Duncan
Yeah, I have played with the eval function a bit, but it didn't seem to help much. Then again, I haven't ever used the eval function before so I may not know how to properly implement it. I have read the page for eval on php.net several times as well as the very helpful examples, but whenever I

Re: [PHP] Processing Code created on the fly

2002-03-29 Thread Miguel Cruz
On Fri, 29 Mar 2002, Jonathan Duncan wrote: Yeah, I have played with the eval function a bit, but it didn't seem to help much. Then again, I haven't ever used the eval function before so I may not know how to properly implement it. I have read the page for eval on php.net several times as

Re: [PHP] Processing Code created on the fly

2002-03-29 Thread Jason Wong
On Saturday 30 March 2002 12:39, Jonathan Duncan wrote: Yeah, I have played with the eval function a bit, but it didn't seem to help much. Then again, I haven't ever used the eval function before so I may not know how to properly implement it. I have read the page for eval on php.net