[PHP] explode won't explode

2001-04-27 Thread Tom Beidler
I have the following code that doesn't seem to explode. I'm trying to make a field that looks like 21,23,25,27 or small,medium,large,x-large into a pulldown menu with the individual item broken out. if (($size != ) ($size != n/a)) { $sizearry = explode(,, $size); while (list($key,$value)

Re: [PHP] explode won't explode

2001-04-27 Thread jdwright
Hiya, I have the following code that doesn't seem to explode. I'm trying to make a field that looks like 21,23,25,27 or small,medium,large,x-large into a pulldown menu with the individual item broken out. if (($size != ) ($size != n/a)) { $sizearry = explode(,, $size); while

Re: [PHP] explode won't explode

2001-04-27 Thread Christian Reiniger
On Friday 27 April 2001 14:15, Tom Beidler wrote: I have the following code that doesn't seem to explode. I'm trying to make a field that looks like 21,23,25,27 or small,medium,large,x-large into a pulldown menu with the individual item broken out. if (($size != ) ($size != n/a)) {