RE: [PHP] String construction help required please

2003-12-01 Thread Wouter van Vliet
Jay Blanchard wrote: > [snip] >> I need to display : "$_POST[$var]," >> >> Including the "" and the , . >> >> I have tried : \"\"$_POST[\".$var.\"]," but that is very wrong. >> >> Could one of you kind list members show me what it should be please ? > > > You have a couple of options... just p

RE: [PHP] String construction help required please

2003-12-01 Thread Jay Blanchard
[snip] > I need to display : "$_POST[$var]," > > Including the "" and the , . > > I have tried : \"\"$_POST[\".$var.\"]," but that is very wrong. > > Could one of you kind list members show me what it should be please ? You have a couple of options... just pick the one that suits you... [/snip]

Re: [PHP] String construction help required please

2003-12-01 Thread Justin French
On Monday, December 1, 2003, at 05:59 PM, Dave Carrera wrote: I need to construct a string to visually show to the user some $_POST vars. I need to display : "$_POST[$var]," Including the "" and the , . I have tried : \"\"$_POST[\".$var.\"]," but that is very wrong. Could one of you kind li

Re: [PHP] String construction help required please

2003-12-01 Thread Robert Cummings
On Mon, 2003-12-01 at 01:59, Dave Carrera wrote: > Hi List, > > I need to construct a string to visually show to the user some $_POST vars. > > I need to display : "$_POST[$var]," > > Including the "" and the , . > > I have tried : \"\"$_POST[\".$var.\"]," but that is very wrong. > > Could on