Re: [PHP] Name of variable to string [SOLVED]

2008-02-08 Thread tedd
At 4:56 PM -0500 2/8/08, Robert Cummings wrote: On Fri, 2008-02-08 at 16:51 -0500, tedd wrote: At 10:42 PM +0100 2/8/08, Jochem Maas wrote: >$post_var = @sessionize_post('post_var'); > >so why exactly is that not an option (or good idea)? It IS an option -- and that's what I was doing (exc

Re: [PHP] Name of variable to string [SOLVED]

2008-02-08 Thread tedd
At 1:39 PM -0800 2/8/08, Jim Lucas wrote: So, how is this any better then just doing this $_SESSION = array_merge(array_merge($_SESSION, $_POST), $_GET); If I replace the two calls to sessionize_*() with the above line, I get the same results. Not sure what I am missing. First, I didn't say

Re: [PHP] Name of variable to string [SOLVED]

2008-02-08 Thread Robert Cummings
On Fri, 2008-02-08 at 16:51 -0500, tedd wrote: > At 10:42 PM +0100 2/8/08, Jochem Maas wrote: > >$post_var = @sessionize_post('post_var'); > > > >so why exactly is that not an option (or good idea)? > > It IS an option -- and that's what I was doing (except for the > suppress error) via this: >

Re: [PHP] Name of variable to string [SOLVED]

2008-02-08 Thread tedd
At 10:42 PM +0100 2/8/08, Jochem Maas wrote: $post_var = @sessionize_post('post_var'); so why exactly is that not an option (or good idea)? It IS an option -- and that's what I was doing (except for the suppress error) via this: $post_var = sessionize_post('post_var'); I just wanted to mak

Re: [PHP] Name of variable to string [SOLVED]

2008-02-08 Thread Jochem Maas
Daniel Brown schreef: On Feb 8, 2008 4:17 PM, tedd <[EMAIL PROTECTED]> wrote: At 10:31 AM -0500 2/8/08, Daniel Brown wrote: > On Feb 8, 2008, at 10:14 AM, tedd wrote: > Hi gang: > > From a variable with the name of $this_variable -- how do I get a > > string 'this_variable' ? What Te

Re: [PHP] Name of variable to string [SOLVED]

2008-02-08 Thread Jim Lucas
tedd wrote: At 10:31 AM -0500 2/8/08, Daniel Brown wrote: > On Feb 8, 2008, at 10:14 AM, tedd wrote: > Hi gang: > > From a variable with the name of $this_variable -- how do I get a > > string 'this_variable' ? What Tedd means is this: ;-P BINGO! We have a winner! For those of

Re: [PHP] Name of variable to string [SOLVED]

2008-02-08 Thread Daniel Brown
On Feb 8, 2008 4:17 PM, tedd <[EMAIL PROTECTED]> wrote: > At 10:31 AM -0500 2/8/08, Daniel Brown wrote: > > > On Feb 8, 2008, at 10:14 AM, tedd wrote: > >> > >> > Hi gang: > >> > > >> > From a variable with the name of $this_variable -- how do I get a > > > > string 'this_variable' ? > >> > >

Re: [PHP] Name of variable to string [SOLVED]

2008-02-08 Thread tedd
At 10:31 AM -0500 2/8/08, Daniel Brown wrote: > On Feb 8, 2008, at 10:14 AM, tedd wrote: > Hi gang: > > From a variable with the name of $this_variable -- how do I get a > > string 'this_variable' ? What Tedd means is this: ;-P BINGO! We have a winner! For those of you who want