At 6:07 PM -0600 3/12/11, Shawn McKenzie wrote:
On 03/12/2011 10:37 AM, tedd wrote:
> Here's a demo:
> http://php1.net/b/form-radio1/
> Don't make it more complicated than it needs be.
My point exactly! So long as the name of the name[] part is the same
they will be treated as the same
On 03/12/2011 10:37 AM, tedd wrote:
> At 9:28 PM +0200 3/11/11, Danny wrote:
>> Hi guys,
>>
>> I have a form that has a long list of radio-bottons inside of it. The
>> radio-buttons are dynamically created via php and MySQL.
>>
>> Here is an example of one of the radio buttons:
>>
>> > ?>" value="0
At 9:28 PM +0200 3/11/11, Danny wrote:
Hi guys,
I have a form that has a long list of radio-bottons inside of it. The
radio-buttons are dynamically created via php and MySQL.
Here is an example of one of the radio buttons:
; ?>" value="0">
; ?>" value="1">
Now, when I submit this form to ano
On 11/03/2011 20:28, Danny wrote:
Hi guys,
I have a form that has a long list of radio-bottons inside of it. The
radio-buttons are dynamically created via php and MySQL.
Here is an example of one of the radio buttons:
"
value="0">
"
value="1">
Now, when I submit this form to another page fo
On Fri, 2011-03-11 at 21:28 +0200, Danny wrote:
> Hi guys,
>
> I have a form that has a long list of radio-bottons inside of it. The
> radio-buttons are dynamically created via php and MySQL.
>
> Here is an example of one of the radio buttons:
>
> "
> value="0">
> "
> value="1">
>
> Now, when
On Fri, Mar 11, 2011 at 14:28, Danny wrote:
[snip!]
>
> Now, when I submit this form to another page for processing, how would I
> "catch"
> the above radio-button's $_POST name since I do not know the name, only that
> it
> starts with "radio_" ?
One method is a foreach() loop.
$v) {
On Dec 11, 2003, at 8:02 AM, Christian Jancso wrote:
Hi there,
I have the following problem:
How can I use variables in the $_POST statement?
Here is my code:
$old_station[$o] = $_POST['$i'];
$new_station[$o] = $_POST['$i'];
Christian,
My biggest question is: What are $i and $o set to?
Unless $i
From: "Christian Jancso" <[EMAIL PROTECTED]>
> I have the following problem:
> How can I use variables in the $_POST statement?
> Here is my code:
>
> $old_station[$o] = $_POST['$i'];
> $new_station[$o] = $_POST['$i'];
$old_station[$o] = $_POST[$i];
$new_station[$o] = $_POST[$i];
Variables are n
8 matches
Mail list logo