Re: [PHP] Re: Trying to keep a dropdown selection sticky [solved] - Forgive the length of message, please

2008-07-05 Thread tedd
At 11:31 AM -0400 7/5/08, Michael S. Dunsavage wrote: What I eventually did was: -snip- You might also consider adding a javascript routine to do the same thing. Why? Because it's a bit quicker doesn't hit the server until all the fields are filled. Like this: http://webbytedd.com/c/form-

Re: [PHP] Re: Trying to keep a dropdown selection sticky [solved] - Forgive the length of message, please

2008-07-05 Thread Michael S. Dunsavage
On Sat, 2008-07-05 at 21:30 +1000, Peter Jackson wrote: > Michael S. Dunsavage wrote: > > I have a form I want to keep sticky, but I can't figure out how. I got > > all the 's to be sticky > > > > The select script > > > > > > > echo 'State'; > > echo ''; > > foreach ($state_list as $ke

[PHP] Re: Trying to keep a dropdown selection sticky

2008-07-05 Thread Peter Jackson
Michael S. Dunsavage wrote: I have a form I want to keep sticky, but I can't figure out how. I got all the 's to be sticky The select script State'; echo ''; foreach ($state_list as $key => $value) { echo " $value\n"; } echo ''; echo ''; ?> If I'm read