RE: [PHP] Newbie Question: Variables on the fly

2004-05-28 Thread Tim Winters
Steve!!! This is great! I had no idea you could use arrays in url variables. That makes everything much easier. Thanks very much Tim At 06:26 AM 28/05/2004, Steve Edberg wrote: At 2:01 AM -0300 5/28/04, [EMAIL PROTECTED] wrote: Thanks for the reply Denis, Let me elaborate a bit. I have a php pag

Re: [PHP] Newbie Question: Variables on the fly

2004-05-28 Thread Curt Zirzow
* Thus wrote Steve Edberg ([EMAIL PROTECTED]): > At 2:01 AM -0300 5/28/04, [EMAIL PROTECTED] wrote: > > However, most of what you can do with them can be done more simply > with arrays. In your example above, use > > myPage.php?dataPoint[]=10&dataPoint[]=20&dataPoint[]=30 > I'd also sugg

RE: [PHP] Newbie Question: Variables on the fly

2004-05-28 Thread Steve Edberg
At 2:01 AM -0300 5/28/04, [EMAIL PROTECTED] wrote: Thanks for the reply Denis, Let me elaborate a bit. I have a php page which I want to pass a series of variables via a url string. eg myPage.php?dataPoint1=10&dataPoint2=20&dataPoint3=30 The thing is I won;t know until runtime how many dataPoints t

Re: [PHP] Newbie Question: Variables on the fly

2004-05-28 Thread PHP4web
ct vars by extract() to make them in normal shape if you get my point - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Friday, May 28, 2004 8:01 AM Subject: RE: [PHP] Newbie Question: Variables on the fly > Thanks for

RE: [PHP] Newbie Question: Variables on the fly

2004-05-27 Thread csnm
Thanks for the reply Denis, Let me elaborate a bit. I have a php page which I want to pass a series of variables via a url string. eg myPage.php?dataPoint1=10&dataPoint2=20&dataPoint3=30 The thing is I won;t know until runtime how many dataPoints there will be so I have also included 1 additional

RE: [PHP] Newbie Question: Variables on the fly

2004-05-27 Thread Dennis Seavers
;JackArse" is silent) > [Original Message] > From: Dennis Seavers <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Cc: <[EMAIL PROTECTED]> > Date: 05/27/2004 9:30:19 PM > Subject: RE: [PHP] Newbie Question: Variables on the fly > > Maybe others will catch

RE: [PHP] Newbie Question: Variables on the fly

2004-05-27 Thread Dennis Seavers
Maybe others will catch on to your intention, but I think you need to provide a bit more information. For example, what variables do you want to create (drawn from a file source, or create on the fly)? Where will they come from (a database, perhaps)? You could create a script that creates variab