Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Abrufen von Beitragswerten aus Formularen mit dynamischen Elementnamen

Erstens würde ich wechseln

name="s_<?php echo $colour_row[colour_name]; ?>"

usw. zu

name="attributes[s_<?php echo $colour_row[colour_name]; ?>]"

Und verwenden Sie das folgende PHP

if( !empty($_POST['attributes']) ) {
    foreach( $_POST['attributes'] as $sKey => $iQty ) {
        var_dump( $sKey );
        var_dump( $iQty );
    }
} else {
    die( 'Just for debuging. attributes-array was empty' );
}

Oder noch besser

verwenden

name="attributes[xxl][color]" eg. name="attributes[xxl][<?php echo $colour_row[colour_name]; ?>]"

Und

if( !empty($_POST['attributes']) ) {
    foreach( $_POST['attributes'] as $sSize => $aData ) {
        var_dump( $sSize );
        var_dump( $aData );
    }
}