RE: [PHP] Buffalo'ed, stumped, confused...

2004-01-09 Thread Ralph Guzman
January 08, 2004 4:31 PM To: PHP General Subject: [PHP] Buffalo'ed, stumped, confused... Good evening. I'm trying to read using $_POST, 4 radio buttons named "miles". I tried reading the selected value with $_POST['miles[0]'], etc. with no success. I've even t

Re: [PHP] Buffalo'ed, stumped, confused...

2004-01-08 Thread John W. Holmes
Robin Kopetzky wrote: I'm trying to read using $_POST, 4 radio buttons named "miles". I tried reading the selected value with $_POST['miles[0]'], etc. with no success. I've even tried using foreach to read the selected radio button with no success. It's just $_POST['miles']. :) -- ---John Holmes.

Re: [PHP] Buffalo'ed, stumped, confused...

2004-01-08 Thread Richard Davey
Hello Robin, Friday, January 9, 2004, 12:31:16 AM, you wrote: RK> I'm trying to read using $_POST, 4 radio buttons named "miles". I tried RK> reading the selected value with $_POST['miles[0]'], etc. with no success. Radio buttons can only have 1 eventual outcome (hence the whole point of them) a

[PHP] Buffalo'ed, stumped, confused...

2004-01-08 Thread Robin Kopetzky
Good evening. I'm trying to read using $_POST, 4 radio buttons named "miles". I tried reading the selected value with $_POST['miles[0]'], etc. with no success. I've even tried using foreach to read the selected radio button with no success. Help!! I'm totally stumped with this one. I thought the