Re: [PHP] Generated input names

2003-03-23 Thread Richard Whitney
Thanks for your suggestions everyone - I have the problem under control! Richard Quoting Jason Wong <[EMAIL PROTECTED]>: ### On Monday 24 March 2003 12:04, Richard Whitney wrote: ### > By the way, some names are various colorsappended with a size letter ### (i.e. ### > BlackM, GreenXL, etc.) ###

Re: [PHP] Generated input names

2003-03-23 Thread Jason Wong
On Monday 24 March 2003 12:04, Richard Whitney wrote: > By the way, some names are various colorsappended with a size letter (i.e. > BlackM, GreenXL, etc.) > > others are simply a letter incremented starting with a. If I was doing this I would put all form elements into an array and thus name the

Re: [PHP] Generated input names

2003-03-23 Thread Richard Whitney
By the way, some names are various colorsappended with a size letter (i.e. BlackM, GreenXL, etc.) others are simply a letter incremented starting with a. Thanks Quoting Richard Whitney <[EMAIL PROTECTED]>: ### Greetings! ### ### I have several (up to 100) input boxes being generated on the fly

[PHP] Generated input names

2003-03-23 Thread Richard Whitney
Greetings! I have several (up to 100) input boxes being generated on the fly. I need to somehow grab the names generated for each one to then insert the values into a database (MySQL), one per row. I've looked at variable variables on php.net, but I thought I would pick your brains, just in case