Re: [PHP] using foreach() to capture multiple selections

2004-09-21 Thread Janet Valade
Luke Mackenzie wrote: Subject: using foreach() to capture multiple selections hi, i would like to to put multiple selections from a form list into a single variable using foreach but am unsure how to do so. can someone advise how to adapt the following code? print "You are interested in: "; foreac

Re: [PHP] using foreach() to capture multiple selections

2004-09-21 Thread Jason Wong
On Wednesday 22 September 2004 03:26, Luke Mackenzie wrote: > Subject: using foreach() to capture multiple selections > i would like to to put multiple selections from a form list into a single > variable using foreach but am unsure how to do so. manual > PHP and HTML -- Jason Wong -> Gremlins

Re: [PHP] using foreach() to capture multiple selections

2004-09-21 Thread Matthew Sims
> > i would like to to put multiple selections from a form list into a single > variable using foreach but am unsure how to do so. > > can someone advise how to adapt the following code? > > > print "You are interested in: "; > > foreach($myGoals as $value) > > { > > print "$value "; > > } > > ?>

Re: [PHP] using foreach() to capture multiple selections

2004-09-21 Thread John Holmes
From: "Luke Mackenzie" <[EMAIL PROTECTED]> i would like to to put multiple selections from a form list into a single variable using foreach but am unsure how to do so. can someone advise how to adapt the following code? print "You are interested in: "; foreach($myGoals as $value) { print "$value ";

Re: [PHP] using foreach() to capture multiple selections

2004-09-21 Thread Greg Donald
On Tue, 21 Sep 2004 20:26:04 +0100, Luke Mackenzie <[EMAIL PROTECTED]> wrote: > i would like to to put multiple selections from a form list into a single > variable using foreach but am unsure how to do so. > > can someone advise how to adapt the following code? "; foreach($myGoals as $key => $v

[PHP] using foreach() to capture multiple selections

2004-09-21 Thread Luke Mackenzie
Subject: using foreach() to capture multiple selections hi, i would like to to put multiple selections from a form list into a single variable using foreach but am unsure how to do so. can someone advise how to adapt the following code? - lukem - quality c