RE: [PHP] Running for loop and concat. variables...

2001-07-11 Thread scott [gts]
this is like the last post on form submissions with individually numbered elements... if you can use an array, you should... it'll make things easier for you in the long run. > -Original Message- > From: Jeff Lewis [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, July 11, 2001 2:15 PM > To

Re: [PHP] Running for loop and concat. variables...

2001-07-11 Thread Jeff Lewis
TECTED]> Sent: Wednesday, July 11, 2001 2:14 PM Subject: RE: [PHP] Running for loop and concat. variables... I think using isset should do it. try: for ($i = 0; $i <= $ffromx; $i++) { if (isset($ffrom.$i)){ echo $ffrom.$i."";} }

RE: [PHP] Running for loop and concat. variables...

2001-07-11 Thread Matthew Luchak
I think using isset should do it. try: for ($i = 0; $i <= $ffromx; $i++) { if (isset($ffrom.$i)){ echo $ffrom.$i."";} } Matthew Luchak Webmaster Kaydara Inc. [EMAIL PROTECTED] -Original Message- From: Jeff Lewis [mailto:[EMAIL PROTECTED]]